mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
20 lines
191 B
ObjectPascal
20 lines
191 B
ObjectPascal
{ $OPT= -Rintel }
|
|
|
|
procedure nothing(x,y: longint);assembler;
|
|
asm
|
|
mov eax,x
|
|
mov ebx,y
|
|
end;
|
|
|
|
|
|
{procedure nothing(x,y: longint);
|
|
begin
|
|
asm
|
|
mov eax,x
|
|
mov ebx,y
|
|
end;
|
|
end; }
|
|
|
|
Begin
|
|
end.
|