fpc/tests/webtbs/tw6525.pp
2007-07-23 21:01:32 +00:00

19 lines
172 B
ObjectPascal

{ %cpu=i386,x86_64 }
label l1;
var
err : boolean;
begin
asm
jmp l1
end;
writeln('oops');
err:=true;
l1:
writeln('hello');
if err then
halt(1);
end.