word expression is to put a word value at the current position, this value is expression
Keywords:ARM
Reference address:ARM assembly pseudo-instructions: .word description
for example,
_rWTCON:
.word 0x15300000 ; is to put a value of 0x15300000 at the current address, that is, _rWTCON
Translated into Intel's assembly statement:
_rWTCON dw 0x15300000
For example:
ldr r1, _rWTCON
_rWTCON:
.word 0x15300000
Instead of transferring the content at address 0x1530 0000 to r1, the content at address _rWTCON is placed in r1, and the content at address _rWTCON is 0x15300000. In fact, r1 is set to 0x15300000
Previous article:ARM assembly instruction set 3 - jump instruction
Next article:Introduction to ARM assembly pseudo-instructions Part 2
- Popular Resources
- Popular amplifiers
Latest Microcontroller Articles
He Limin Column
Microcontroller and Embedded Systems Bible
Professor at Beihang University, dedicated to promoting microcontrollers and embedded systems for over 20 years.
MoreSelected Circuit Diagrams
MoreDaily News
- Allegro MicroSystems Introduces Advanced Magnetic and Inductive Position Sensing Solutions at Electronica 2024
- Car key in the left hand, liveness detection radar in the right hand, UWB is imperative for cars!
- After a decade of rapid development, domestic CIS has entered the market
- Aegis Dagger Battery + Thor EM-i Super Hybrid, Geely New Energy has thrown out two "king bombs"
- A brief discussion on functional safety - fault, error, and failure
- In the smart car 2.0 cycle, these core industry chains are facing major opportunities!
- The United States and Japan are developing new batteries. CATL faces challenges? How should China's new energy battery industry respond?
- Murata launches high-precision 6-axis inertial sensor for automobiles
- Ford patents pre-charge alarm to help save costs and respond to emergencies
- New real-time microcontroller system from Texas Instruments enables smarter processing in automotive and industrial applications
Guess you like