From a07f8de8839a0fc2837a42e8c54c26279fdf55b7 Mon Sep 17 00:00:00 2001 From: Dennis Yurichev Date: Fri, 14 Aug 2015 01:18:56 +0300 Subject: [PATCH] typos --- src/chapter-11.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/chapter-11.md b/src/chapter-11.md index 0543d00..d8ac7cc 100644 --- a/src/chapter-11.md +++ b/src/chapter-11.md @@ -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 ```