Quellcode durchsuchen

* fix mem[] arrays

peter vor 21 Jahren
Ursprung
Commit
89b40a3682
1 geänderte Dateien mit 7 neuen und 4 gelöschten Zeilen
  1. 7 4
      rtl/go32v2/system.pp

+ 7 - 4
rtl/go32v2/system.pp

@@ -73,9 +73,9 @@ const
 
 var
 { Mem[] support }
-  mem  : array[0..$7fffffff] of byte absolute $0:$0;
-  memw : array[0..$7fffffff div sizeof(word)] of word absolute $0:$0;
-  meml : array[0..$7fffffff div sizeof(longint)] of longint absolute $0:$0;
+  mem  : array[0..$7ffffffe] of byte absolute $0:$0;
+  memw : array[0..$7ffffffe div sizeof(word)] of word absolute $0:$0;
+  meml : array[0..$7ffffffe div sizeof(longint)] of longint absolute $0:$0;
 { C-compatible arguments and environment }
   argc  : longint;
   argv  : ppchar;
@@ -1602,7 +1602,10 @@ Begin
 End.
 {
   $Log$
-  Revision 1.40  2004-10-27 18:52:05  hajny
+  Revision 1.41  2004-11-02 07:43:50  peter
+    * fix mem[] arrays
+
+  Revision 1.40  2004/10/27 18:52:05  hajny
     * HEAP and HEAPSIZE removal reflected
 
   Revision 1.39  2004/09/18 11:17:17  hajny