To align data on a specific byte boundary, use the ALIGN keyword or the ALIGNALL command. Listing: ALIGN Keyword Example and Listing: ALIGNALL Command Example are examples for bumping the location counter to the next 16-byte boundary.
file.c (.text) . = ALIGN (0x10); file.c (.data) # aligned on 16-byte boundary.
file.c (.text) ALIGNALL (0x10); #everything past this point aligned # on 16 byte boundary file.c (.data)
For more alignment information, refer to the topics ALIGN and ALIGNALL.