Program is running normally do the job but is killed at the end and I get this error message
a very simple example:
---asm.s
global OpenFile
section .text
OpenFile:
push ebp
mov ebp,esp
mov eax,5
mov ebx,[ebp+8]
mov ecx,0
int 80h
leave
ret
--------main.c
extern int OpenFile(const...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.