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...