* fixed bug in MsDos and Intr in i8086 far data memory models not cleaning their

parameters from the stack properly (leaving an extra word on the stack)

git-svn-id: trunk@28059 -
This commit is contained in:
nickysn 2014-06-25 12:33:03 +00:00
parent 47588a287d
commit e7e02467fc

View File

@ -447,9 +447,9 @@ int_number:
pop ds
pop bp
%ifdef __FAR_CODE__
retf 4
retf 4 + extra_data_offset
%else
ret 4
ret 4 + extra_data_offset
%endif
%ifndef __TINY__