mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-07 03:12:17 +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.
59 lines
1.3 KiB
Verilog
59 lines
1.3 KiB
Verilog
/*
|
|
* blocksyn1.v
|
|
* This tests synthesis where statements in a block override previous
|
|
* statements in a block and also uses other previous statements in the
|
|
* block. Note in this example that the flag assignment is completely
|
|
* overruled by the conditional that is directly after it.
|
|
*/
|
|
module main;
|
|
|
|
reg [1:0] out;
|
|
reg flag;
|
|
reg [1:0] sel;
|
|
|
|
(* ivl_synthesis_on, ivl_combinational *)
|
|
always @*
|
|
begin
|
|
out = 2'b00;
|
|
case (sel)
|
|
2'b00: out = 2'b11;
|
|
2'b01: out = 2'b10;
|
|
2'b10: out = 2'b01;
|
|
// out for sel==2'b11 should be inherited from previous statement
|
|
endcase // case(sel)
|
|
|
|
// This flag is completely overridden by the conditional, so
|
|
// the synthesizer should drop it.
|
|
flag = 1'b0;
|
|
if (out == 2'b00)
|
|
flag = 1'b1;
|
|
else
|
|
flag = 1'b0;
|
|
end
|
|
|
|
reg [2:0] idx;
|
|
reg test;
|
|
|
|
(* ivl_synthesis_off *)
|
|
initial begin
|
|
for (idx = 0 ; idx < 7 ; idx = idx + 1) begin
|
|
sel = idx[1:0];
|
|
#1 if (out !== ~sel) begin
|
|
$display("FAILED -- sel=%b, out=%b, flag=%b", sel, out, flag);
|
|
$finish;
|
|
end
|
|
|
|
test = (out == 2'b00)? 1'b1 : 1'b0;
|
|
|
|
if (test !== flag) begin
|
|
$display("FAILED -- test=%b, sel=%b, out=%b, flag=%b",
|
|
test, sel, out, flag);
|
|
$finish;
|
|
end
|
|
end // for (idx = 0 ; idx < 7 ; idx = idx + 1)
|
|
|
|
$display("PASSED");
|
|
end // initial begin
|
|
|
|
endmodule // main
|