mirror of
https://github.com/AYIDouble/x86-Assembly-Reverse-Engineering.git
synced 2026-06-20 16:45:30 +08:00
🔁 Refactoring
This commit is contained in:
parent
1ead42b4b8
commit
4bb9484c8f
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue