Tool/software: TI C/C++ Compiler
The attached assembly file emits .word, .short, and .byte directive data to section "rodata". Prior to emitting each item, an ".align" directive attempts to force byte alignment. However, the tools insist on aligning each output item to the associated boundary. I have tried leaving off the "1" parameter, and having just one ".align" directive at the top of the file, with the same results. How can I generate a stream of byte-aligned bytes without padding? I am running CCS 7.1.0, with link-time optimization enabled. Thanks.