mirror of https://github.com/YosysHQ/yosys.git
Fix invalid verilog syntax
This commit is contained in:
parent
569e834df2
commit
acb341745d
|
@ -79,7 +79,7 @@ module _90_lut_mux (A, B, S, Y);
|
||||||
// A 1010 1010
|
// A 1010 1010
|
||||||
// B 1100 1100
|
// B 1100 1100
|
||||||
// S 1111 0000
|
// S 1111 0000
|
||||||
.LUT(8'b_1100_1010)
|
.LUT(8'b 1100_1010)
|
||||||
) lut (
|
) lut (
|
||||||
.A(AA),
|
.A(AA),
|
||||||
.Y(Y)
|
.Y(Y)
|
||||||
|
|
Loading…
Reference in New Issue