This code works in real mode. I have such example: This code goes to 0x001FFD50 address.
...
001F066F: push es
001F0670: push 0FD50
001F0673: retf ^^^^^^
001F0674: push 00051
...
After that, I have such code:
I need to get back to the 0x001F0674 address.
...
001FFE91: push 00674
001FFE94: retn ^^^
...
But instead of that, I go to the 0x0674 address. How can I get back to the 0x001F0674 address in real mode?