diff --git a/test/link/db-@.asm b/test/link/db-@.asm new file mode 100644 index 00000000..50d69e0b --- /dev/null +++ b/test/link/db-@.asm @@ -0,0 +1,7 @@ +SECTION "fixed", ROM0[0] + db 0, @ +; We need this section to be floating because RGBASM can know the value of PC +; otherwise, leading to different behavior +; FIXME: we rely on this landing at address 2, which isn't *guaranteed*... +SECTION "floating", ROM0 + db 2, @ diff --git a/test/link/db-@.out b/test/link/db-@.out new file mode 100644 index 00000000..e69de29b diff --git a/test/link/db-@.out.bin b/test/link/db-@.out.bin new file mode 100644 index 00000000..eaf36c1d Binary files /dev/null and b/test/link/db-@.out.bin differ