Error-[NOA] Null object access
/proj/library/pub/env/tb/tb_pg_seqlib.svh, 405
The object at dereference depth 1 is being used before it was
constructed/allocated.
Please make sure that the object is allocated before using it.
在出错地方前一行加入类似下面的代码调试就好了if(tile_o == null) begin
$display("ERROR: tile_o not create!");
end
else if(tile_o.pg_mst==null) begin
$display("ERROR: tile_o.pg_mst not create!");
end