mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 17:59:25 +02:00
12 lines
175 B
ObjectPascal
12 lines
175 B
ObjectPascal
function getheapsize:longint;assembler;
|
|
var
|
|
heapsize : longint;external name 'HEAPSIZE';
|
|
asm
|
|
movl HEAPSIZE,%eax
|
|
end ['EAX'];
|
|
|
|
begin
|
|
writeln(getheapsize);
|
|
end.
|
|
|