mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 09:21:42 +01: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; |