Sfoglia il codice sorgente

* 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 anni fa
parent
commit
8392c492cc
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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;