diff --git a/test/asm/local-like-keyword.asm b/test/asm/local-like-keyword.asm new file mode 100644 index 00000000..d4a33837 --- /dev/null +++ b/test/asm/local-like-keyword.asm @@ -0,0 +1,13 @@ +SECTION "test", ROM0 + +Global: dw Global +.ret dw .ret +.xor: dw .xor +Global.section: dw .section + +DEF n EQU 42 +.n: dw .n + +MACRO foo +ENDM +.foo: dw Global.foo diff --git a/test/asm/local-like-keyword.out.bin b/test/asm/local-like-keyword.out.bin new file mode 100644 index 00000000..f6a32e62 Binary files /dev/null and b/test/asm/local-like-keyword.out.bin differ