shithub: rgbds

ref: 6755a0912b7b1d36c0f3fcfb7d6e0455773c8a68
dir: /test/asm/ram-code.asm/

View raw version
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"