v86/tests/nasm/pop_esp.asm
2020-07-21 20:10:14 -05:00

13 lines
166 B
NASM

global _start
section .data
align 16
%include "header.inc"
mov esp, stack_top-16
mov dword [esp], 55aaaa55h
pop dword [esp-12]
%include "footer.inc"