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
4e43cb7317
commit
9351e4d3ca
4 changed files with 51 additions and 11 deletions
10
manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v
Normal file
10
manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v
Normal file
|
@ -0,0 +1,10 @@
|
|||
module DSP48_MACC (a, b, c, y);
|
||||
|
||||
input [24:0] a;
|
||||
input [17:0] b;
|
||||
input [47:0] c;
|
||||
output [47:0] y;
|
||||
|
||||
assign y = a*b + c;
|
||||
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue