mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 14:18:32 +02:00
14 lines
128 B
ObjectPascal
14 lines
128 B
ObjectPascal
{ %CPU=x86_64 }
|
|
{ %OPT=-Sew }
|
|
{ %NORUN }
|
|
|
|
program tasm25fs0;
|
|
|
|
{$asmmode intel}
|
|
|
|
begin
|
|
asm
|
|
mov rax, fs:[rdi+5]
|
|
end;
|
|
end.
|