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

JMPS Problem

CPU - XC167Cl, 40 Mhz, ARTX166, 1 Assembler, 150 C and C++ files. In 0xC02000 i have a code and i want to jump to it from my main program:
I have a problem with the statement:

  __asm
  {
     JMPS   0x00C0,0x2000
  }

If i add some NOP-s :

  _nop_(); _nop_(); _nop_();
  __asm
  {
     JMPS   0x00C0,0x2000
  }

the jump is not made.
Does someone know why? Thank you !

0