mirror of
https://github.com/gbdev/rgbds.git
synced 2026-05-15 22:21:44 +00:00
Implement ds align[alignment, offset] (#1181)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
SECTION "test", ROM0
|
||||
align 3 ; 3 < 4, so this is used in `ds align` below
|
||||
db 1, 2, 5 ; three
|
||||
ds align[4] ; (1 << 3) - three = 5 bytes
|
||||
db 10, 20 ; two
|
||||
align 4, 2
|
||||
assert @ - STARTOF("test") == 3 + 5 + 2
|
||||
Reference in New Issue
Block a user