Hello All: How can I reference the start address of the startup code in start167.a66 in a C file? The only thing I can think of doing is
extern void C_STARTUP(void);
Seems likes I've found the way. In your startup.a66 find the following:
?C_RESET PROC TASK C_STARTUP INTNO RESET = 0 ?C_STARTUP: LABEL Model ... ?C_RESET ENDP ?C_STARTUP_CODE ENDS
C_RESET PROC TASK C_STARTUP INTNO RESET = 0 PUBLIC C_RESET ?C_STARTUP: LABEL Model ... C_RESET ENDP ?C_STARTUP_CODE ENDS
extern void C_RESET(void);
Cool! Thanks Mike, I'll give that a try -Walt
View all questions in Keil forum