Repository URL to install this package:
Version:
3.0.0 ▾
|
{ %cpu=i386 }
{ %target=go32v2,linux,freebsd,win32}
{ %opt=-Sew -vw }
{$mode delphi}
procedure test(l: longint); stdcall;
begin
if l<>longint($deadbeef) then
halt(1);
end;
begin
asm
push word $dead
push word $beef
call test
end;
end.