• Loader and application startup code location
    On ARM platform I am trying to configure a loader as follow: loader at 0x0, application at 0x4000 Loader has its own startup code, at 0; application use RTX o.s., and has its own startup code. At...
  • C166 Compiler
    /* file1.c */ static void StaticFunction(void); void main(void) { StaticFunction(); } void StaticFunction(void) { /* something */ } /* file2.c */ void SomeFunction(void) { StaticFunction...
  • _at_ for C166 ?
    Hello, is for C166 compiler also the instruction _at_ as with 8051 compilers to the direct address assignment? Rgds, Peter
  • c166 interrupts
    How can I cause an interrupt to load a function when my P8.5 goes high? Thank you
  • C166 preprocessor
    Hi all, Is there an official specification of the Keil C166 preprocessor output? We're currently using 3.12. - Do lines always start with #line or can there be whitespace in front of #line? ...