* use call instead of jmp to PASCALMAIN, because it sets up a stack frame and

all stack frames must be preceded with a valid return address in win16

git-svn-id: trunk@31575 -
This commit is contained in:
nickysn 2015-09-07 22:12:43 +00:00
parent 3cb9be73bc
commit 1344d391d3

View File

@ -103,9 +103,9 @@
jz error
%ifdef __FAR_CODE__
jmp far PASCALMAIN
call far PASCALMAIN
%else
jmp PASCALMAIN
call PASCALMAIN
%endif
error: