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);
As for unexpected implications, I don't think there are any. ?C_RESET is a local symbol, so no side effects outside startup.a66. None inside also, at least it seems so. Oh. Okay, then maybe the correct method should be to define a global label in the file for use by C functions that is set equal to the ?C_RESET label? - Mark
That was my initial idea, but I didn't want to work through the assembler manual to find out how it's done. Defining an independent global label seen by C mudules would be a safer way.