DataSection alignment

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
fryquez
Enthusiast
Enthusiast
Posts: 360
Joined: Mon Dec 21, 2015 8:12 pm

DataSection alignment

Post by fryquez »

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:

Code: Select all

DataSection
  Label: Align 16
  Data.l 1
EndDataSection
Or If you don't want to break syntax, align every new DataSection to multiple of 16.