mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 17:59:27 +02:00
* fix mem[] arrays
This commit is contained in:
parent
f5f187f3a9
commit
89b40a3682
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user