-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiplierController.vhdl
129 lines (110 loc) · 4.1 KB
/
MultiplierController.vhdl
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY MultiplierController IS PORT (
operand0, operand1 : IN STD_LOGIC_VECTOR (7 DOWNTO 0);
multiply : IN STD_LOGIC;
clk : IN STD_LOGIC;
product : OUT STD_LOGIC_VECTOR (15 DOWNTO 0);
done : OUT STD_LOGIC
);
END ENTITY MultiplierController;
ARCHITECTURE RTL OF MultiplierController IS
COMPONENT FullAdder16Bit IS PORT (
operand0, operand1 : IN STD_LOGIC_VECTOR(15 DOWNTO 0);
carryIn : IN STD_LOGIC;
sum: out STD_LOGIC_VECTOR(15 DOWNTO 0);
carryOut: out STD_LOGIC
);
END COMPONENT FullAdder16Bit;
COMPONENT Serializer8BitLSB IS PORT (
data : IN STD_LOGIC_VECTOR(7 DOWNTO 0);
load, compute : IN STD_LOGIC;
clk : IN STD_LOGIC;
q : OUT STD_LOGIC
);
END COMPONENT Serializer8BitLSB;
COMPONENT shiftRegister16BitLSB IS PORT (
data : IN STD_LOGIC_VECTOR (7 DOWNTO 0);
load, compute : IN STD_LOGIC;
clk : IN STD_LOGIC;
q : OUT STD_LOGIC_VECTOR (15 DOWNTO 0)
);
END COMPONENT shiftRegister16BitLSB;
COMPONENT multiplixer2By16Bit IS PORT (
in0, in1 : IN STD_LOGIC_VECTOR (15 DOWNTO 0);
sel : IN STD_LOGIC;
q : OUT STD_LOGIC_VECTOR (15 DOWNTO 0)
);
END COMPONENT multiplixer2By16Bit;
COMPONENT Register16Bit IS PORT (
d : IN STD_LOGIC_VECTOR (15 DOWNTO 0);
rst : IN STD_LOGIC;
clk : IN STD_LOGIC;
q : OUT STD_LOGIC_VECTOR (15 DOWNTO 0)
);
END COMPONENT Register16Bit;
SIGNAL sLoad, sCompute : STD_LOGIC;
CONSTANT sZeroes : STD_LOGIC_VECTOR(15 DOWNTO 0) := x"0000";
CONSTANT sZero: STD_LOGIC := '0';
SIGNAL sA : STD_LOGIC_VECTOR(15 DOWNTO 0);
SIGNAL sB: STD_LOGIC;
SIGNAL sRst: STD_LOGIC := '1';
SIGNAL sShifted, sShiftedBuf: STD_LOGIC_VECTOR(15 DOWNTO 0);
SIGNAL sSum: STD_LOGIC_VECTOR(15 DOWNTO 0);
SIGNAL sSelMux1: STD_LOGIC;
SIGNAL sFullAdderA, sFullAdderBuf: STD_LOGIC_VECTOR(15 DOWNTO 0);
TYPE MultiplierState IS (WAITING, LOADING, STEP1, STEP2, STEP3, STEP4, STEP5, STEP6, STEP7, STEP8, FINALSTEP);
SIGNAL state: MultiplierState := WAITING;
BEGIN
shiftRegister: shiftRegister16BitLSB PORT MAP (operand0, sLoad, sCompute, clk, sA);
serializer: serializer8BitLSB PORT MAP (operand1, sLoad, sCompute, clk, sB);
mux0: multiplixer2By16Bit PORT MAP (sZeroes, sA, sB, sShifted);
mux1: multiplixer2By16Bit PORT MAP (sZeroes, sSum, sSelMux1, sFullAdderA);
fa: FullAdder16Bit PORT MAP (sFullAdderBuf, sShiftedBuf, sZero, sSum, OPEN);
fullAdderBuf: Register16Bit PORT MAP(sFullAdderA, sRst, clk, sFullAdderBuf);
shiftedBuf: Register16Bit PORT MAP(sShifted, sRst, clk, sShiftedBuf);
PROCESS (clk)
BEGIN
IF RISING_EDGE(clk) THEN
CASE state IS
WHEN WAITING =>
sRst <= '1';
sCompute <= '0';
sSelMux1 <= '0';
done <= '0';
IF multiply = '1' THEN
state <= LOADING;
sLoad <= '1';
ELSE
sLoad <= '0';
END IF;
WHEN LOADING =>
sLoad <= '0';
state <= STEP1;
WHEN STEP1 =>
sCompute <= '1';
sRst <= '0';
state <= STEP2;
WHEN STEP2 =>
sSelMux1 <= '1';
state <= STEP3;
WHEN STEP3 =>
state <= STEP4;
WHEN STEP4 =>
state <= STEP5;
WHEN STEP5 =>
state <= STEP6;
WHEN STEP6 =>
state <= STEP7;
WHEN STEP7 =>
state <= STEP8;
WHEN STEP8 =>
state <= FINALSTEP;
WHEN FINALSTEP =>
done <= '1';
state <= WAITING;
END CASE;
END IF;
END PROCESS;
product <= sSum;
END ARCHITECTURE RTL;