Browse Source

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

git-svn-id: trunk@24875 -
nickysn 12 years ago
parent
commit
8392c492cc
1 changed files with 2 additions and 1 deletions
  1. 2 1
      rtl/i8086/setjumph.inc

+ 2 - 1
rtl/i8086/setjumph.inc

@@ -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;