ARM common assembly instructions

ARM framework assembler

.section .data

      < Initialized data >

.section.bss

      < Uninitialized data >

.section .text

.global _start

_start:

      < Assembly code >

Note: typically the above structure is simplified

.text

.global  _start

_start:

     < Assembly code >

 

Referring specifically to ARM embedded system based tutorial Zhou, who was present Little Red Book

Guess you like

Origin www.cnblogs.com/idyllcheung/p/11321988.html