diff options
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..06372f5af --- /dev/null +++ b/manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v @@ -0,0 +1,10 @@ +module DSP48_MACC (a, b, c, y); + +input [17:0] a; +input [24:0] b; +input [47:0] c; +output [47:0] y; + +assign y = a*b + c; + +endmodule |