mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
10 lines
118 B
ObjectPascal
10 lines
118 B
ObjectPascal
function asmstr:string;assembler;
|
|
asm
|
|
movl __RESULT,%edi
|
|
movl $0x4101,%al
|
|
stosw
|
|
end;
|
|
|
|
begin
|
|
writeln(asmstr);
|
|
end; |