You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
envenomator
changed the title
ALIGN statement at end of file / between DS statements at the end of a file produces empty fillbytes
ALIGN statement at end of file / between DS statements at the end of a file produces unnecessary fillbytes
Dec 21, 2024
This program already just puts out one byte
ld a,b ; 0x78
ds 256 ; end of file, produces no output
However, this program produces a lot of fillbytes
ld a,b ; 0x78
align 256 ; 256x fillbyte
ds 256 ; end of file, no output
enhancement request to postpone ALIGN writes similarly as DS
The text was updated successfully, but these errors were encountered: