mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-29 01:03:29 +02:00
By adding ivtest to the iverilog source tree, it is easier to keep the regression test synchronized with the source that is being tested. This should be especially helpful for PRs that add a new feature, and have a matching ivtest PR with the regression test for that feature.
11 lines
207 B
Verilog
11 lines
207 B
Verilog
module top;
|
|
parameter weq1 = 2'b01 ==? 0.0;
|
|
parameter weq2 = 0.0 ==? 2'b01;
|
|
parameter wneq1 = 2'b01 !=? 0.0;
|
|
parameter wneq2 = 0.0 !=? 2'b01;
|
|
|
|
initial begin
|
|
$display("FAILED");
|
|
end
|
|
endmodule
|