Well in inline asm I have done this to do jumps to addresses.
But I was wondering how you would do just "jmp 0x00400324" because of how the program works i cant store the value it has to be completely static like "jmp 0x00400324" but that doesnt work.Code:int addr = 0x00400324 __asm{ jmp addr }


Reply With Quote