mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-18 19:13:04 +02:00
9 lines
96 B
ObjectPascal
9 lines
96 B
ObjectPascal
{$asmmode att}
|
|
|
|
begin
|
|
asm
|
|
call *%eax // this is correct
|
|
movl %esi,*%eax
|
|
end;
|
|
end.
|