ARM微處理器的指令集概述三—— .word的含義
ldr pc, _undefined_instruction就是從_undefined_instruction處取值,即undefined_instruction, 并設(shè)置到pc中
比如:
ldr r1, _rWTCON_rWTCON: .word 0x15300000是把地址_rWTCON上的內(nèi)容放到r1,而地址_rWTCON上的內(nèi)容是0x15300000。實際上就是把r1設(shè)置為0x15300000 .
評論