* jmp_buf.bp and .sp changed to word, because pointer will become 32-bit in far data memory models

git-svn-id: trunk@24875 -
This commit is contained in:
nickysn 2013-06-11 22:47:42 +00:00
parent baa4d39ea3
commit 8392c492cc

View File

@ -16,7 +16,8 @@
Type
jmp_buf = packed record
// bx,si,di: Word;
bp,sp,pc: Pointer;
bp,sp: Word;
pc: Pointer;
end;
PJmp_buf = ^jmp_buf;