mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:07:54 +02:00
19 lines
173 B
ObjectPascal
19 lines
173 B
ObjectPascal
|
|
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.
|