x86_lesson.md 193 B

eax = 2     esp=FFF8
ebx = 44

push eax
push ebx

FFFF8
FFFFC 44
FFFFF 2

Push instruction

mov [esp], eax
sub esp, 4

Pop instruction

add esp, 4
mov eax, [esp]