diff options
Diffstat (limited to 'manual/PRESENTATION_ExAdv/macc_simple_xmap.v')
-rw-r--r-- | manual/PRESENTATION_ExAdv/macc_simple_xmap.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manual/PRESENTATION_ExAdv/macc_simple_xmap.v b/manual/PRESENTATION_ExAdv/macc_simple_xmap.v new file mode 100644 index 000000000..42f5bae95 --- /dev/null +++ b/manual/PRESENTATION_ExAdv/macc_simple_xmap.v @@ -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 |