DataSection alignment
Posted: Wed Jan 19, 2022 7:02 pm
Can we get a Align option for DataSection labels?
With FASM i could simple use !align 4 (and with preprocessor even the needed !align 16)
Something like:
Or If you don't want to break syntax, align every new DataSection to multiple of 16.
With FASM i could simple use !align 4 (and with preprocessor even the needed !align 16)
Something like:
Code: Select all
DataSection
Label: Align 16
Data.l 1
EndDataSection