笔记--- Writing Code for ROM

来源:互联网 发布:高德地图离线js api 编辑:程序博客网 时间:2024/04/29 12:57

Initializing the system

 

One of the main considerations with application code in ROM is the way in which the application initializes itself and starts executing. If there is an operating system present, this does not cause a problem because the application is entered automatically through the main() function.


No automatic initialization takes place on RESET, so the application entry point must perform some initialization before it can call any C code.


Typically, the initialization code should carry out some or all of the following tasks:
• defining the entry point
• setting up exception vectors
• initializing the memory system
• initializing the stack pointer registers
• initializing any critical I/O devices
• initializing any RAM variables required by the interrupt system
• enabling interrupts
• changing processor mode if necessary
• changing processor state if necessary
• initializing memory required by C
• entering C code.

 

原创粉丝点击