mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Implement warning diagnostic flags for RGBLINK (#1754)
This commit is contained in:
10
test/link/patch-diagnostics.asm
Normal file
10
test/link/patch-diagnostics.asm
Normal file
@@ -0,0 +1,10 @@
|
||||
def fzero equs "startof(\"test\")"
|
||||
section "test", rom0
|
||||
ld a, $8000_0000 / (fzero - 1)
|
||||
ld a, 1 << (fzero - 1)
|
||||
ld a, 1 << (fzero + 32)
|
||||
ld a, (fzero - 1) >> 1
|
||||
ld a, 1 >> (fzero - 1)
|
||||
ld a, 1 >> (fzero + 32)
|
||||
ld a, 1 >>> (fzero - 1)
|
||||
ld a, 1 >>> (fzero + 32)
|
||||
Reference in New Issue
Block a user