mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-10 05:00:52 +00:00
Progress in presentation
This commit is contained in:
parent
0dadfed46d
commit
b0e84802ec
5 changed files with 207 additions and 0 deletions
6
manual/PRESENTATION_ExAdv/macc_xilinx_test.v
Normal file
6
manual/PRESENTATION_ExAdv/macc_xilinx_test.v
Normal file
|
@ -0,0 +1,6 @@
|
|||
module test(a, b, c, d, e, f, y);
|
||||
input [19:0] a, b, c;
|
||||
input [15:0] d, e, f;
|
||||
output [41:0] y;
|
||||
assign y = a*b + c*d + e*f;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue