mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
32 lines
670 B
Verilog
32 lines
670 B
Verilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
`include "t_flag_f_tsub_inc.v"
|
|
|
|
module t;
|
|
initial begin
|
|
`ifndef GOT_DEF1
|
|
$write("%%Error: NO GOT_DEF1\n"); $stop;
|
|
`endif
|
|
`ifndef GOT_DEF2
|
|
$write("%%Error: NO GOT_DEF2\n"); $stop;
|
|
`endif
|
|
`ifndef GOT_DEF3
|
|
$write("%%Error: NO GOT_DEF3\n"); $stop;
|
|
`endif
|
|
`ifndef GOT_DEF4
|
|
$write("%%Error: NO GOT_DEF4\n"); $stop;
|
|
`endif
|
|
`ifndef GOT_DEF5
|
|
$write("%%Error: NO GOT_DEF5\n"); $stop;
|
|
`endif
|
|
`ifndef GOT_DEF6
|
|
$write("%%Error: NO GOT_DEF6\n"); $stop;
|
|
`endif
|
|
`ifdef NON_DEF
|
|
$write("%%Error: NON_DEF\n"); $stop;
|
|
`endif
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|