20 lines
165 B
NASM
20 lines
165 B
NASM
|
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
|