3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 18:31:51 +00:00

remove port direction workaround from test case

This commit is contained in:
Stefan Biereigel 2019-05-27 18:10:39 +02:00
parent 7f11a73210
commit c5fe04acfd

View file

@ -17,7 +17,6 @@ module c;
wand E;
wire E_wire = E;
genvar i;
for (i = 0; i < 3; i = i + 1)
@ -27,7 +26,7 @@ module c;
);
b b_inst (
.D(E_wire)
.D(E)
);
end