mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
20 lines
229 B
ObjectPascal
20 lines
229 B
ObjectPascal
{ %skiptarget=android }
|
|
{ %cpu=i386 }
|
|
{ %OPT=-Cg- }
|
|
|
|
var i:integer;
|
|
{$asmmode intel}
|
|
{ "mov i,1"
|
|
is like
|
|
"mov word ptr [i],1"
|
|
or
|
|
movw i,$1 in ATT syntax }
|
|
|
|
begin
|
|
asm
|
|
mov i, 1
|
|
end;
|
|
if i <> 1 then
|
|
halt(1);
|
|
end.
|