[HDL] Add HDL for 8-bit single-mode multiplier

This commit is contained in:
tangxifan 2021-03-23 15:36:09 -06:00
parent 145a80de43
commit 108c84a022
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
//-----------------------------------------------------
// Design Name : mult_8x8
// File Name : mult_8x8.v
// Function : A 8-bit multiplier
// Coder : Xifan Tang
//-----------------------------------------------------
module mult_8x8 (
input [0:7] A,
input [0:7] B,
output [0:15] Y
);
assign Y = A * B;
endmodule