mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-01 23:50:23 +02:00
* fixed compilation of unit objpas in i8086 large memory model
git-svn-id: trunk@27249 -
This commit is contained in:
parent
2b57a50233
commit
a4ac2a3538
@ -48,7 +48,7 @@ unit objpas;
|
||||
TIntegerArray = IntegerArray;
|
||||
PIntegerArray = ^IntegerArray;
|
||||
{$ifdef CPU16}
|
||||
PointerArray = array [0..16*1024-2] of Pointer;
|
||||
PointerArray = array [0..(32768 div SizeOf(Pointer))-2] of Pointer;
|
||||
{$else CPU16}
|
||||
PointerArray = array [0..512*1024*1024-2] of Pointer;
|
||||
{$endif CPU16}
|
||||
|
Loading…
Reference in New Issue
Block a user