ORG is a pseudo-instruction, telling the compiler to store the program from 0000 in ROM, but AJMP MAIN is an unconditional jump instruction, that is, after the microcontroller is powered on, it will first start executing the program from 0000, but AJMP will directly jump the program to the storage area pointed to by the MAIN label to start fetching instructions and executing them. Generally, the MAIN label is placed after the statement ORG 0030, that is, the main program is stored from the address 0030;
This is because there are several interrupt sources inside the microcontroller. The default entry for internal interrupts (including several timer interrupts and external interrupts) is between 0000-0030. Each interrupt takes up about two or four bytes, I can't remember clearly. Once these internal interrupts occur, the pointer must immediately point to between 0004-0030. If your program has statements placed in this address, the program will definitely run away!!!
Therefore, in the design of the 8051 MCU, 0004-0030 has been allocated for internal use. Therefore, your program can only be stored from any storage area after 0030. AJMP MAIN is to know which address in the ROM to start fetching instructions from when the MCU is powered on.
If you use interrupts, you must also write AJMP at the address 0004--0030 that has been defined as the interrupt entry, so that you can jump to the corresponding interrupt program you wrote.
Previous article:STC15W4K48S4's direct USB-ISP function! The most convenient download for 51 MCU
Next article:Usage of R8051XC2 Timer 2
- Popular Resources
- Popular amplifiers
Professor at Beihang University, dedicated to promoting microcontrollers and embedded systems for over 20 years.
- Innolux's intelligent steer-by-wire solution makes cars smarter and safer
- 8051 MCU - Parity Check
- How to efficiently balance the sensitivity of tactile sensing interfaces
- What should I do if the servo motor shakes? What causes the servo motor to shake quickly?
- 【Brushless Motor】Analysis of three-phase BLDC motor and sharing of two popular development boards
- Midea Industrial Technology's subsidiaries Clou Electronics and Hekang New Energy jointly appeared at the Munich Battery Energy Storage Exhibition and Solar Energy Exhibition
- Guoxin Sichen | Application of ferroelectric memory PB85RS2MC in power battery management, with a capacity of 2M
- Analysis of common faults of frequency converter
- In a head-on competition with Qualcomm, what kind of cockpit products has Intel come up with?
- Dalian Rongke's all-vanadium liquid flow battery energy storage equipment industrialization project has entered the sprint stage before production
- 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
- Learning Linux kernel semaphores on SinlinxA33 development board
- STM32 encoder signal interference.
- [GD32L233C-START Evaluation] +ADC collects PT1000 to obtain temperature
- Three traditional methods of wireless video transmission
- Displaying the SARS-CoV-2 virus with flashing LEDs
- How to improve simulation? Learn to generate LTspice models yourself
- Essential for EMC Electronic Engineers
- Can you help me take a look at this FPGA development board?
- FLUKE is hiring!
- Help, about converting hexadecimal to numeric value (LIS25BA)