• Memory Pages bigger than 16kB?
    Hello, is it possible to access memory pages with the C167(infineon) that are bigger than 16kB? 16kB per page are to small for my application.
  • Compiling a structure bigger than 4096 bytes
    Hi, I'm trying to compile a structure that is bigger than 4096 bytes, and the compiler (c51.exe V6.02d) answers : GENOMF FATAL-ERROR: TYPE-RECORD TOO LARGE (4096). Is there a solution different...
  • Interrupt numbering
    I have noticed that the Kiel compiler doesn't produce the correct interrupt vector if 8051 interrupt numbers are used. For example for external interrupt 0 (IE0), the interrupt number has to be 0, instead...
  • Interrupt number for an interrupt subroutine
    Hi, I'm trying to use the interrupt PWMINT for a PWM program with the 167. The problem is I cannot find the correct interrupt number for the function: void Interrupt_func (void) interrupt PWMINT...
  • usage of interrupt for the same interrupt vertor number
    hi when we write codes like this: void f1(void) interrupt 1 { } void f2(void) interrupt 1 { } There is a link problem because the different functions use the same interrupt vector number. But...