iverilog/ivtest/ivltests/compare_bool_reg.v

12 lines
160 B
Verilog

module main;
reg bool [31:0] idx;
initial begin
idx = 0;
if (idx < 17) $display("PASSED");
else $display("FAILED");
end
endmodule