-
Notifications
You must be signed in to change notification settings - Fork 0
/
Multiplier16x16.v
31 lines (27 loc) · 985 Bytes
/
Multiplier16x16.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*-- *******************************************************
-- Computer Architecture Course, Laboratory Sources
-- Amirkabir University of Technology (Tehran Polytechnic)
-- Department of Computer Engineering (CE-AUT)
-- https://ce[dot]aut[dot]ac[dot]ir
-- *******************************************************
-- All Rights reserved (C) 2019-2020
-- *******************************************************
-- Student ID :
-- Student Name:
-- Student Mail:
-- *******************************************************
-- Additional Comments:
--
--*/
/*-----------------------------------------------------------
--- Module Name: 16 Bit Multiplier
--- Description: Module1:
-----------------------------------------------------------*/
`timescale 1 ns/1 ns
module Multiplier16x16 (
input [15:0] A , // input [unsigned 16 bits]
input [15:0] B , // input [unsigned 16 bits]
output [31:0] P // output [unsigned 32 bits]
);
assign P = A * B ;
endmodule