编译器为Raisonance是不是自动会把下面的启动程序段编译进去???不是把全局变量初始化为0?
CST7_START: CST7_START_V: CST7_START_Z: CST7_START_V_Z:
; Comment out the following line if your project does not use any ; 0-initialized C global variables initialization. ; ?C?ZeroData must be called BEFORE ?C?InitData CALL ?C?ZeroData ; Initialize null global variables
; Comment out the following line if your project does not use any C global ; variables initialization. If you are unsure, just leave it as it is. CALL ?C?InitData ; Initialize global variables.
JP main ; Call the user entry point (main) ; main must NEVER return!
|