-
Notifications
You must be signed in to change notification settings - Fork 0
/
Multiplier8x8.v
30 lines (27 loc) · 982 Bytes
/
Multiplier8x8.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
/*-- *******************************************************
-- 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: 8 Bit Multiplier
--- Description: Module1:
-----------------------------------------------------------*/
`timescale 1 ns/1 ns
module Multiplier8x8 (
input [ 7:0] A , // input [unsigned 08 bits]
input [ 7:0] B , // input [unsigned 08 bits]
output [15:0] P // output [unsigned 16 bits]
);
assign P = A * B ;
endmodule