-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConditionalUnit.sv
59 lines (51 loc) · 1.81 KB
/
ConditionalUnit.sv
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
// Mux de selector 3 bits
module mux3 #(parameter N=32)
(input logic [N-1:0] in1, in2, in3, in4, in5, in6, in7, in8,
input logic [2:0] sel,
output logic [N-1:0] out);
assign out = (sel == 3'b0) ? in1 : (sel == 3'b1) ? in2 : (sel == 3'b10) ? in3 : (sel == 3'b11) ? in4 :
(sel == 3'b100) ? in5 : (sel == 3'b101) ? in6 : (sel == 3'b110) ? in7 : in8;
endmodule
/**
***********************************************
Instituto Tecnologico de Costa Rica
Ingenieria en Electronica
Unidad de Condicion
Autores: Esteban Aguero Perez
Michael Gonzalez Rivera
Daniela Hernandez Alvarado
Lenguaje: SystemVerilog
Version: 1.0
Ultima Modificacion: 26/09/2018
Entradas:- Banderas z, n y v
- 2 Activadores
- Clock
- Condicion
Restricciones:
- Entradas (excepto cond de 3 bits)
son de 1 bit
Salidas: - Resultado de comparar banderas
Arquitectura de Computadores I 2018
Prof. Ronald Garcia
***********************************************
**/
module ConditionalUnit (input logic z, v, n, enable1, enable2, clk, // enable1 es FlagWrite/CMP, enable2 es BranchInst
input logic [2:0] cond, // CondFlag
output logic out); // sale PCSrc
logic [2:0] regMem, regFlags;
logic outCond;
assign regFlags[0]=z;
assign regFlags[1]=v;
assign regFlags[2]=n;
Register #(3) REG (regFlags, clk, enable1, regMem);
mux3 #(1) MUX (regMem[0] & 1'b1, // z==1
~(regMem[0] ^ 1'b0), // z==0
~(regMem[2] ^ regMem[1]), // n==v
regMem[2] ^ regMem[1], // n!=v
~(regMem[0] ^ 1'b0) & ~(regMem[2] ^ regMem[1]), // z==0 y n==v
(regMem[0] & 1'b1) | (regMem[2] ^ regMem[1]), // z==1 o n!=v
1'b0, // vacio
1'b1, // salto incondicional
cond, outCond);
assign out = (enable2) ? outCond : 1'b0 ;
endmodule