mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
@@ -0,0 +1,2 @@
|
||||
FATAL: empty-local.asm(5):
|
||||
'Label.' is a nonsensical reference to an empty local label
|
||||
|
||||
7
test/asm/multiple-dots-local.asm
Normal file
7
test/asm/multiple-dots-local.asm
Normal file
@@ -0,0 +1,7 @@
|
||||
SECTION "sec", ROM0
|
||||
|
||||
Parent:
|
||||
Parent.heir:
|
||||
db 0
|
||||
Parent...spare:
|
||||
db 1
|
||||
2
test/asm/multiple-dots-local.err
Normal file
2
test/asm/multiple-dots-local.err
Normal file
@@ -0,0 +1,2 @@
|
||||
FATAL: multiple-dots-local.asm(6):
|
||||
'Parent...spare' is a nonsensical reference to a nested local label
|
||||
0
test/asm/multiple-dots-local.out
Normal file
0
test/asm/multiple-dots-local.out
Normal file
8
test/asm/nested-local-reference.asm
Normal file
8
test/asm/nested-local-reference.asm
Normal file
@@ -0,0 +1,8 @@
|
||||
SECTION "sec", ROM0
|
||||
|
||||
Parent:
|
||||
Parent.child:
|
||||
db 0
|
||||
.grandchild:
|
||||
db 1
|
||||
dw Parent.child.grandchild
|
||||
2
test/asm/nested-local-reference.err
Normal file
2
test/asm/nested-local-reference.err
Normal file
@@ -0,0 +1,2 @@
|
||||
FATAL: nested-local-reference.asm(8):
|
||||
'Parent.child.grandchild' is a nonsensical reference to a nested local symbol
|
||||
0
test/asm/nested-local-reference.out
Normal file
0
test/asm/nested-local-reference.out
Normal file
7
test/asm/nested-local.asm
Normal file
7
test/asm/nested-local.asm
Normal file
@@ -0,0 +1,7 @@
|
||||
SECTION "sec", ROM0
|
||||
|
||||
Parent:
|
||||
Parent.child:
|
||||
db 0
|
||||
Parent.child.grandchild:
|
||||
db 1
|
||||
2
test/asm/nested-local.err
Normal file
2
test/asm/nested-local.err
Normal file
@@ -0,0 +1,2 @@
|
||||
FATAL: nested-local.asm(6):
|
||||
'Parent.child.grandchild' is a nonsensical reference to a nested local label
|
||||
0
test/asm/nested-local.out
Normal file
0
test/asm/nested-local.out
Normal file
@@ -4,4 +4,4 @@ Parent:
|
||||
.child:
|
||||
db 0
|
||||
NotParent:
|
||||
dw Parent.child.fail
|
||||
dw Parent.orphan
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
FATAL: remote-local-noexist.asm(7):
|
||||
'Parent.child.fail' is a nonsensical reference to a nested local symbol
|
||||
|
||||
@@ -3,7 +3,7 @@ ERROR: sym-scope.asm(4):
|
||||
ERROR: sym-scope.asm(5):
|
||||
Local label 'Nice.try' in main scope
|
||||
ERROR: sym-scope.asm(17):
|
||||
Not currently in the scope of 'Parentheses.check'
|
||||
Not currently in the scope of 'Parentheses'
|
||||
ERROR: sym-scope.asm(21):
|
||||
Not currently in the scope of 'Parent.check'
|
||||
Not currently in the scope of 'Parent'
|
||||
error: Assembly aborted (4 errors)!
|
||||
|
||||
Reference in New Issue
Block a user