mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Add test for LOAD
This commit is contained in:
20
test/asm/ram-code.asm
Normal file
20
test/asm/ram-code.asm
Normal file
@@ -0,0 +1,20 @@
|
||||
SECTION "test", ROM0[1]
|
||||
call Target
|
||||
LOAD "new", WRAM0[$C001]
|
||||
Target: dl $DEADBEEF
|
||||
.end
|
||||
ENDL
|
||||
After:
|
||||
jp Target
|
||||
ld hl, Word
|
||||
dw Byte, Target.end, After
|
||||
|
||||
SECTION "ram test", WRAM0 ; Should end up at $C005
|
||||
Word:
|
||||
dw
|
||||
|
||||
SECTION "small ram test", WRAM0 ; Should end up at $C000
|
||||
Byte:
|
||||
db
|
||||
|
||||
PRINTT "{Target}\n{Target.end}\n{After}\n"
|
||||
Reference in New Issue
Block a user