mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:08:11 +02:00
19 lines
226 B
ObjectPascal
19 lines
226 B
ObjectPascal
{ %cpu=i386 }
|
|
{ %fail }
|
|
{ %opt=-vw -Sew }
|
|
{ %norun }
|
|
{ %skiptarget=darwin }
|
|
program testasm;
|
|
|
|
begin
|
|
{$asmmode intel}
|
|
asm
|
|
mov eax,es:[0]
|
|
end;
|
|
{$asmmode att}
|
|
asm
|
|
mov %es:0,%eax
|
|
mov %es:(0),%eax
|
|
end;
|
|
end.
|