nasm: pop esp test

This commit is contained in:
Fabian 2018-02-25 10:40:20 -06:00
parent e0dc847ded
commit 0c2113d28c

12
tests/nasm/pop_esp.asm Normal file
View file

@ -0,0 +1,12 @@
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"