-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJumpControlBlock_TB.v
100 lines (79 loc) · 1.6 KB
/
JumpControlBlock_TB.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
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
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 17:32:40 09/08/2017
// Design Name: JumpControlBlock
// Module Name: E:/LABs/PROCESSORS/JumpControlBlock_TB.v
// Project Name: PROCESSORS
// Target Device:
// Tool versions:
// Description:
//
// Verilog Test Fixture created by ISE for module: JumpControlBlock
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
////////////////////////////////////////////////////////////////////////////////
module JumpControlBlock_TB;
// Inputs
reg [23:0] ins;
reg [7:0] Current_Address;
reg [3:0] flag_ex;
reg interrupt;
reg clk;
reg reset;
// Outputs
wire [7:0] jmp_loc;
wire pc_mux_sel;
// Instantiate the Unit Under Test (UUT)
JumpControlBlock uut (
.jmp_loc(jmp_loc),
.pc_mux_sel(pc_mux_sel),
.ins(ins),
.Current_Address(Current_Address),
.flag_ex(flag_ex),
.interrupt(interrupt),
.clk(clk),
.reset(reset)
);
initial begin
// Initialize Inputs
ins = 24'h0;
Current_Address = 8'h01;
flag_ex = 4'hf;
interrupt = 0;
reset = 1;
// Wait 100 ns for global reset to finish
#200;
reset=0;
#500;
reset=1;
#900;
interrupt=1;
#1000;
interrupt=0;
ins = 24'h000008;
#1000;
ins=24'hc00008;
#2000;
ins=24'h800008;
flag_ex=4'h0;
#1000;
ins=24'hf00008;
// Add stimulus here
end
initial begin
clk=0;
#500
forever begin
clk=~clk;
#500;
end
end
endmodule