fpc/tests/tbs/tb0638.pp
2018-02-11 22:26:01 +00:00

15 lines
137 B
ObjectPascal

{ %cpu=i8086 }
{$MODE TP}
program tsegie;
var
a: procedure;
b: word;
begin
a:=nil;
b:=seg(a);
if b<>0 then
halt(1);
end.