diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-02-20 23:44:28 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-02-20 23:44:28 +0100 |
commit | 9351e4d3caef1af7b7768d66b7f6edc12713d109 (patch) | |
tree | 92c0aa4166c1effe5cf7b702c731f733e35a4440 /manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v | |
parent | 4e43cb731701679e6d584ba14163befcb846e87b (diff) | |
download | yosys-9351e4d3caef1af7b7768d66b7f6edc12713d109.tar.gz yosys-9351e4d3caef1af7b7768d66b7f6edc12713d109.tar.bz2 yosys-9351e4d3caef1af7b7768d66b7f6edc12713d109.zip |
Progress in presentation
Diffstat (limited to 'manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v')
-rw-r--r-- | manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v b/manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v new file mode 100644 index 000000000..15bd04ed1 --- /dev/null +++ b/manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v @@ -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 |