• C166 Compiler
    /* file1.c */ static void StaticFunction(void); void main(void) { StaticFunction(); } void StaticFunction(void) { /* something */ } /* file2.c */ void SomeFunction(void) { StaticFunction...
  • C166 Compiler support
    Hi! Does Keil C166 compiler support complex function calls via function pointers?
  • C166 Compiler Manual
    File: Keil\C166\hlp\C166.PDF (user's guide 09.00) from page 15 onward running title: Keil Software — C51 Compiler User's Guide instead of: Keil Software — C166 Compiler User's Guide
  • Bit field order in C166 compiler
    Hi, I am new to C166 compiler. I would like to know how is the order of the bit field in a structure. i.e. the first member would be a LSB or MSB. Thanks in anticipation. Viral.
  • c166 interrupts
    How can I cause an interrupt to load a function when my P8.5 goes high? Thank you