mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 16:49:23 +02:00
* fix mem[] arrays
This commit is contained in:
parent
f5f187f3a9
commit
89b40a3682
@ -73,9 +73,9 @@ const
|
|||||||
|
|
||||||
var
|
var
|
||||||
{ Mem[] support }
|
{ Mem[] support }
|
||||||
mem : array[0..$7fffffff] of byte absolute $0:$0;
|
mem : array[0..$7ffffffe] of byte absolute $0:$0;
|
||||||
memw : array[0..$7fffffff div sizeof(word)] of word absolute $0:$0;
|
memw : array[0..$7ffffffe div sizeof(word)] of word absolute $0:$0;
|
||||||
meml : array[0..$7fffffff div sizeof(longint)] of longint absolute $0:$0;
|
meml : array[0..$7ffffffe div sizeof(longint)] of longint absolute $0:$0;
|
||||||
{ C-compatible arguments and environment }
|
{ C-compatible arguments and environment }
|
||||||
argc : longint;
|
argc : longint;
|
||||||
argv : ppchar;
|
argv : ppchar;
|
||||||
@ -1602,7 +1602,10 @@ Begin
|
|||||||
End.
|
End.
|
||||||
{
|
{
|
||||||
$Log$
|
$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
|
* HEAP and HEAPSIZE removal reflected
|
||||||
|
|
||||||
Revision 1.39 2004/09/18 11:17:17 hajny
|
Revision 1.39 2004/09/18 11:17:17 hajny
|
||||||
|
Loading…
Reference in New Issue
Block a user