fpc/tests/test/tasm22.pp
nickysn 506d5fe30e + support bracketless references in the x86 intel syntax; ugly, but TP7 (and
perhaps also Delphi, TASM and MASM)-compatible

git-svn-id: trunk@38296 -
2018-02-20 17:18:09 +00:00

19 lines
153 B
ObjectPascal

{ %CPU=i8086 }
{$IFDEF FPC}
{$MODE TP}
{$ENDIF}
program tasm22;
var
p: pointer;
procedure t; assembler;
asm
call dword ptr es:p
end;
begin
end.