blob: 6f36b38c149b9dd63ef3492fde12785ba7e06912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
start = $8000
end = $9fff
.org start
.incbin "splitrom.raw.2"
.if * > end
.fatal "bank2 code too large"
.else
.out .sprintf("=> %d bytes free in bank 2", end - *)
.endif
.res end-*+1, $ff
|