-
Notifications
You must be signed in to change notification settings - Fork 0
/
tb_fib.v
59 lines (42 loc) · 1.3 KB
/
tb_fib.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
// Grupo 5
// Nomes:
// Thaylor Hugo - 13684425
// Felipe Soria - 13864287
// Alejandro Larrea - 13791522
// Data: 31/05/23
// Comandos usados na simulacao (estando no diretorio "SD2"):
//
// iverilog -o tb_fib .\test_benchs\tb_fib.v .\control.v .\risc.v .\mux_three_to_one.v .\ram.v .\datapath.v .\ula.v .\banco_reg.v .\mux_two_to_one.v .\contador_programa.v .\memoria_instrucao.v
// vvp tb_fib
// gtkwave tb_fib.vcd
`timescale 1ns/1ps
module tb_fib;
// Entrada do RISC
reg clk = 0;
reg reset;
// Saida do RISC
wire [63:0] program_counter;
wire [31:0] instrucao;
integer i;
initial begin
$dumpfile("tb_fib.vcd");
$dumpvars(0,tb_fib);
for(i = 0; i < 32; i = i + 1) begin
$dumpvars(1, risc.datapath.ram.ram[i]);
$dumpvars(1, risc.datapath.banco_reg.registradores[i]);
end
end
always #1 clk = !clk;
risc risc (clk, reset, program_counter, instrucao);
initial begin
// test bench do datapath com memoria de instrução e contador de programa:
reset = 1;
#2;
reset = 0;
#250;
#2 $finish;
end
initial begin
$monitor("program_counter = %2d | instruction = %b", program_counter, instrucao);
end
endmodule