diff --git a/test/link/db-@.asm b/test/link/db-@.asm index 50d69e0b..b41dfa7c 100644 --- a/test/link/db-@.asm +++ b/test/link/db-@.asm @@ -1,7 +1,7 @@ SECTION "fixed", ROM0[0] - db 0, @ + db @, @, @ ; 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, @ + db @, @, @ diff --git a/test/link/db-@.out.bin b/test/link/db-@.out.bin index eaf36c1d..d43e6e83 100644 Binary files a/test/link/db-@.out.bin and b/test/link/db-@.out.bin differ