Skip to content

Commit 90e0678

Browse files
committed
Fixes a double dot .. in heap label
It's harmless but better do it ok
1 parent ff4902e commit 90e0678

747 files changed

Lines changed: 1494 additions & 1494 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/arch/zx48k/backend/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2232,8 +2232,8 @@ def emit_start():
22322232

22332233
heap_init.append('; Defines USER DATA Length in bytes\n' +
22342234
f'{NAMESPACE}ZXBASIC_USER_DATA_LEN EQU {DATA_END_LABEL} - {DATA_LABEL}')
2235-
heap_init.append(f'{NAMESPACE}.__LABEL__.ZXBASIC_USER_DATA_LEN EQU {NAMESPACE}ZXBASIC_USER_DATA_LEN')
2236-
heap_init.append(f'{NAMESPACE}.__LABEL__.ZXBASIC_USER_DATA EQU {DATA_LABEL}')
2235+
heap_init.append(f'{NAMESPACE}__LABEL__.ZXBASIC_USER_DATA_LEN EQU {NAMESPACE}ZXBASIC_USER_DATA_LEN')
2236+
heap_init.append(f'{NAMESPACE}__LABEL__.ZXBASIC_USER_DATA EQU {DATA_LABEL}')
22372237

22382238
output.append('%s:' % START_LABEL)
22392239
if OPTIONS.headerless:

tests/functional/00.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFB 00, 00, 00, 00, 00
2323
core.ZXBASIC_USER_DATA_END:

tests/functional/02.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFB 00, 00
2323
core.ZXBASIC_USER_DATA_END:

tests/functional/03.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFB 00
2323
core.ZXBASIC_USER_DATA_END:

tests/functional/04.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFB 00, 00
2323
core.ZXBASIC_USER_DATA_END:

tests/functional/05.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFW __LABEL0
2323
_a.__DATA__.__PTR__:

tests/functional/053opt.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_subeEgg:
2222
DEFB 00
2323
_sail:

tests/functional/06.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFW __LABEL0
2323
_a.__DATA__.__PTR__:

tests/functional/07.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_a:
2222
DEFW __LABEL0
2323
_a.__DATA__.__PTR__:

tests/functional/08.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ core.__CALL_BACK__:
1616
core.ZXBASIC_USER_DATA:
1717
; Defines USER DATA Length in bytes
1818
core.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_END - core.ZXBASIC_USER_DATA
19-
core..__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20-
core..__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
19+
core.__LABEL__.ZXBASIC_USER_DATA_LEN EQU core.ZXBASIC_USER_DATA_LEN
20+
core.__LABEL__.ZXBASIC_USER_DATA EQU core.ZXBASIC_USER_DATA
2121
_x:
2222
DEFB 05h
2323
core.ZXBASIC_USER_DATA_END:

0 commit comments

Comments
 (0)