We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c1632a commit d38eea2Copy full SHA for d38eea2
2 files changed
arch/zx48k/backend/__init__.py
@@ -2164,11 +2164,11 @@ def __str__(self):
2164
# -------------------------
2165
def emit_start():
2166
output = list()
2167
+ output.append('org %s' % OPTIONS.org.value)
2168
+
2169
if OPTIONS.headerless.value:
2170
return output
2171
- output.append('org %s' % OPTIONS.org.value)
-
2172
if REQUIRES.intersection(MEMINITS) or '__MEM_INIT' in INITS:
2173
output.append('; Defines HEAP SIZE\n' + OPTIONS.heap_size_label.value + ' EQU ' + str(OPTIONS.heap_size.value))
2174
tests/functional/headerless.asm
@@ -1,3 +1,4 @@
1
+ org 32768
2
ld hl, _a
3
inc (hl)
4
ld hl, 0
0 commit comments