mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-03 16:48:07 +00:00
Fix all comments from PR
This commit is contained in:
parent
b835ec37cb
commit
d945b8a357
20 changed files with 465 additions and 160 deletions
12
tests/ice40/mul.v
Normal file
12
tests/ice40/mul.v
Normal file
|
@ -0,0 +1,12 @@
|
|||
module top
|
||||
(
|
||||
input [3:0] x,
|
||||
input [3:0] y,
|
||||
|
||||
output [3:0] A,
|
||||
output [3:0] B
|
||||
);
|
||||
|
||||
assign A = x * y;
|
||||
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue