Ok....so....how do you get 1 byte alignment?
CCS Assembly Tools Manual says: "Operands for the .align directive must equal a power of 2^0 between 2^15, inclusive"
I use '.align 0' to get 1 byte alignment for packing data in flash.....and it's aligning to words.
Throws the Warning: "WARNING! at line 13: [W0001] Power of 2 required, 1 assumed"
Any help on 1 byte alignment?
example Code below:
.sect ".cfgdata"
.retain
.align 0
.byte 0x55
.word 0x4433
.word 0x0000
.word 0x2800