• Another feature clasified as BUG
    When I place function directive 'code', the Keil compiler recognize it as supposed to be located in execution area. But how the Keil knows, the 'code' can only mean CODE. In my case CODE does not exist...
  • Another test for BUG with CC1110F32 and ccdebugger
    Code tested on CC1110F32 and CCdebugger + KEIL Put a breakpoint on line "a++" run one time, and run again... A this point the code will stopped at address 0xFFFF. Make one step assembler...
  • The timer 6 interruption routine is executed two times!
    Hello, I have a very simple program to see how interrupts function. I load the timer 6, when it expires the program jumps to vector 98h where the address of the ISR of timer 6 is and then jumps to...
  • Two locations for Intrinsic Library routines?
    We have previously masked a ROM using certain intrinsic routines (?C?COPY etc.). Only used routines are included in the ROM. When adding new code (in EEPROM) we would like to add further routines in...
  • interrupt routine
    I found that my interrupt routine has strange source code is: void t3Isr(void) interrupt 3 using 0 { tm_flg |= (tm_sts ++ ^ tm_sts) & 0x7; } the compiler give me: 5: void t3Isr(void)...