I am using MASM to do some assembly programming. When I try to run my program it crashes immediately when it encounters "call myFunction", even after I've stripped out all the code from the procedure. Here is my code any help would be greatly appreciated.
.486
.model flat
.stack 100h
ExitProcess PROTO NEAR32 stdcall, dExitCode:DWORD
.code
_start:
call myFunction
INVOKE ExitProcess,0
PUBLIC _start
myFunction proc near32
myFunction endp
END