forked from estebandres/ARQ_TP1_ALU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALU.v
68 lines (64 loc) · 1.81 KB
/
ALU.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
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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 17:06:30 08/22/2014
// Design Name:
// Module Name: ALU
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
`define BUS 8 //ancho del bus de datos
`define BUS_MAX `BUS-1 //ancho del bus de datos MENOS UNO
`define OP 6 //cantidad de bits de operaciones
`define OP_MAX `OP-1 //cantidad MENOS UNO de bits de operaciones
module alu(a,b,op,rdo,carry,zero);
//module alu(a,b,cin,alu,carry,zero,op);
input [`BUS_MAX:0] a,b;
//input cin ;
output [`BUS_MAX:0] rdo;
output carry;
output zero ;
input [`OP_MAX:0] op ;
wire [8:0] resultado;
assign resultado = funcion_alu(a,b,op);
//assign result = funcion_alu(a,b,cin,op);
assign rdo = resultado[`BUS_MAX:0];
assign carry = resultado[8] ;
assign zero = bandera_Z(resultado) ;
function [8:0] funcion_alu;
input [`BUS_MAX:0] a,b ;
//input cin ;
input [`OP_MAX:0] op ;
case ( op )
6'b100000: funcion_alu = a + b;
6'b100010: funcion_alu = a - b;
6'b100100: funcion_alu = a & b;
6'b100101: funcion_alu = a | b;
6'b100110: funcion_alu = a ^ b;
6'b000011: funcion_alu = $signed(a) >>> 1;
6'b000010: funcion_alu = a >> 1;
6'b100111: funcion_alu = ~(a | b);
default : begin
funcion_alu=`OP_MAX'bxxxxx;
$display("Operacion Ilegal Detectada!!");
end
endcase
endfunction
function bandera_Z ;
input [8:0] a8 ;
begin
bandera_Z = ~(a8[0]|a8[1]|a8[2]|a8[3]|a8[4]|a8[5]|a8[6]|a8[7]) ; // si todos los bits del rdo son ceros entonces pone la bandera en 1
end
endfunction
endmodule