SPRU513Z August 2001 – October 2023 SM320F28335-EP
These directives align the section program counter (SPC) or reserve space in a section:
Figure 5-3 demonstrates the .align directive. Using the following assembled code:
1 000000 0002 .field 2,3
2 000000 005A .field 11,8
3 .align 2
4 000002 0065 .string "errorcnt"
000003 0072
000004 0072
000005 006F
000006 0072
000007 0063
000008 006E
000009 0074
5 .align
6 000040 0004 .byte 4
1
2
3 000000 0100 .word 100h, 200h
000001 0200
4 000002 Res_1 .space 17
5 000004 000F .word 15
6 000006 Res_2 .bes 20
7 000007 00BA .byte 0BAh
Res_1 points to the first word in the space reserved by .space. Res_2 points to the last word in the space reserved by .bes.