-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalculadora.v
47 lines (44 loc) · 1.05 KB
/
calculadora.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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 18:54:05 08/22/2014
// Design Name:
// Module Name: calculadora
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
`include "definiciones.vh"
module calculadora(entrada,boton_a,boton_b,boton_op,rdo,carry,zero);
parameter b_dat = `BUS_DAT;
parameter b_op = `BUS_OP;
input [b_dat-1:0] entrada;
input boton_a,boton_b,boton_op;
output [b_dat-1:0] rdo;
output carry,zero;
wire [b_dat-1:0] a,b;
wire [b_op-1:0] op;
cargador inst_cargador(.entrada(entrada),
.boton_a(boton_a),
.boton_b(boton_b),
.boton_op(boton_op),
.a(a),
.b(b),
.op(op));
alu inst_alu(.a(a),
.b(b),
.op(op),
.rdo(rdo),
.carry(carry),
.zero(zero));
endmodule