From 4bb9484c8ff999fd3efb2c85a289cfe763a05c28 Mon Sep 17 00:00:00 2001 From: AYIDouble Date: Thu, 13 Sep 2018 10:33:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=81=20Refactoring?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assembler Intel Code/callee_rules.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assembler Intel Code/callee_rules.asm b/Assembler Intel Code/callee_rules.asm index 4882687..3399690 100644 --- a/Assembler Intel Code/callee_rules.asm +++ b/Assembler Intel Code/callee_rules.asm @@ -9,7 +9,7 @@ PUBLIC _myFunc sub esp, 4 ; Make room for one 4-byte local variable. push edi ; Save the values of registers that the function push esi ; will modify. This function uses EDI and ESI. - ; (no need to save EBX, EBP, or ESP) + ; (no need to save EBX, EBP, or ESP) ; Subroutine Body mov eax, [ebp+8] ; Move value of parameter 1 into EAX