mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 22:23:23 +00:00
Fix invalid verilog syntax
This commit is contained in:
parent
569e834df2
commit
acb341745d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue