mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 09:21:42 +01:00
14 lines
127 B
ObjectPascal
14 lines
127 B
ObjectPascal
{ %CPU=x86_64 }
|
|
{ %OPT=-Sew }
|
|
{ %FAIL }
|
|
|
|
program tasm25ss1;
|
|
|
|
{$asmmode intel}
|
|
|
|
begin
|
|
asm
|
|
mov rax, ss:[rdi+5]
|
|
end;
|
|
end.
|