mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 08:28:09 +02:00
14 lines
128 B
ObjectPascal
14 lines
128 B
ObjectPascal
{ %CPU=x86_64 }
|
|
{ %OPT=-Sew }
|
|
{ %NORUN }
|
|
|
|
program tasm25fs1;
|
|
|
|
{$asmmode att}
|
|
|
|
begin
|
|
asm
|
|
mov %fs:5(%rdi), %rax
|
|
end;
|
|
end.
|