Go to the first, previous, next, last section, table of contents.


ARM Machine Directives

.code [16|32]
This directive selects the instruction set being generated. The value 16 selects Thumb, with the value 32 selecting ARM.
.thumb
This performs the same action as .code 16.
.arm
This performs the same action as .code 32.


Go to the first, previous, next, last section, table of contents.