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

C167-CR-LM Saving a program and executing it in RAM

Dear!
I save a small program in ram memory in address 0x80000.
After saving the program I want to jump to the program saved in ram memory.
Beforer the end of the h86 file there is twolines like this:
:020000020000FC
:04000000FA080200F8

This means that there must be 0xFA080200 saved in address 0x0000, but in this address there is another program saved.
How can I get it?
Thanks!!

Parents
  • Beforer the end of the h86 file there is twolines like this:
    :020000020000FC
    :04000000FA080200F8


    That is the interrupt vector table consisting of only one entry: jump to program start address. If you don't want interrupt vector table in your program, just add NOVECTAB to Options for Target - L166 Misc - Misc Controls.

    - mike

Reply
  • Beforer the end of the h86 file there is twolines like this:
    :020000020000FC
    :04000000FA080200F8


    That is the interrupt vector table consisting of only one entry: jump to program start address. If you don't want interrupt vector table in your program, just add NOVECTAB to Options for Target - L166 Misc - Misc Controls.

    - mike

Children