| | |
long jump in tasm
Please support our Assembly advertiser: Programming Forums - DaniWeb Sister Site
![]() |
Relative jumps are for small jumps, like you would use for if/else or loops.
So if you're using a relative jump which is out of range, perhaps take a hint that the body of your code is too complicated.
Or if you think it's still OK, then invert the test, so you branch over an actual jump.
jnz skip
jmp newmm
skip:
So if you're using a relative jump which is out of range, perhaps take a hint that the body of your code is too complicated.
Or if you think it's still OK, then invert the test, so you branch over an actual jump.
jnz skip
jmp newmm
skip:
![]() |
Other Threads in the Assembly Forum
- Previous Thread: encryption
- Next Thread: rotates
| Thread Tools | Search this Thread |






