This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SiLabs Interrupt 4

Serial Interrupt 4 is expected to compiled at 0x23 but it appears at others memory location when using c code.

Any idea to have it compiled at location 0x23?

Parents
  • Serial Interrupt 4 is expected to compiled at 0x23 but it appears at others memory location when using c code
    as it should
    it will appear wherever the linker puts it, the assembly "jump to vector' is not "your C code"
    if you look at disassembly, you will, at 23h find a jump to wherever you ISR is.

    Erik

Reply
  • Serial Interrupt 4 is expected to compiled at 0x23 but it appears at others memory location when using c code
    as it should
    it will appear wherever the linker puts it, the assembly "jump to vector' is not "your C code"
    if you look at disassembly, you will, at 23h find a jump to wherever you ISR is.

    Erik

Children