This commit is contained in:
Dennis Yurichev 2015-08-14 01:18:56 +03:00
commit a07f8de883

View file

@ -1020,7 +1020,7 @@ pushed on the stack will point to the instruction we want to continue
with. The code works out like this:
```nasm
jmpshort popfskip
jmp short popfskip
popfiret:
iret; branches to the instruction after the
; call, popping the word below the address
@ -1082,8 +1082,8 @@ an 8088.)
.286
:
EMULATE_POPFmacro
pushcs
pushoffset $+4
push cs
push offset $+4
iret
endm
```