fpc/tests/webtbs/tw7733.pp
Jonas Maebe 32120569be + added (works now)
git-svn-id: trunk@8279 -
2007-08-13 15:20:23 +00:00

14 lines
146 B
ObjectPascal

{ %cpu=i386 }
function A: pointer; assembler; nostackframe;
asm
pushl $A
popl %eax
end;
begin
if A <> pointer(@A) then
halt(1);
end.