dos-vga-arena-shooter-game/test.asm

20 lines
165 B
NASM
Raw Normal View History

2024-02-21 21:25:00 +00:00
PUBLIC doAThing_
.386
.model flat,c
_TEXT segment byte public 'CODE'
doAThing_:
push ebp
mov ebp, esp
mov eax, [ebp + 8]
pop ebp
ret
_TEXT ends
end