mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
As suggested by https://github.com/rednex/rgbds/issues/350#issuecomment-498030458 The order `count` then `byte` was decided after some discussion: - First argument consistent with single-arg syntax - Intuitive at least to some people other than myself - Consistent with other assemblers, at least ca65
9 lines
162 B
NASM
9 lines
162 B
NASM
SECTION "test", ROM0[0]
|
|
|
|
Label:
|
|
ds 4, 42
|
|
.other
|
|
ds 5, .other - Label - 5 ; Expressions should work...
|
|
ds 60, .last - Label ; ...even if not constant
|
|
.last
|