mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-17 16:52:16 +00:00
Progress in presentation
This commit is contained in:
parent
772330608a
commit
98940260e1
10 changed files with 152 additions and 10 deletions
6
manual/PRESENTATION_ExAdv/macc_simple_xmap.v
Normal file
6
manual/PRESENTATION_ExAdv/macc_simple_xmap.v
Normal file
|
@ -0,0 +1,6 @@
|
|||
module macc_16_16_32(a, b, c, y);
|
||||
input [15:0] a, b;
|
||||
input [31:0] c;
|
||||
output [31:0] y;
|
||||
assign y = a*b + c;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue