Compare commits
2 Commits
test-reg_b
...
main
Author | SHA1 | Date |
---|---|---|
BOISSON Brice | 3e1ca02fd4 | |
BOISSON Brice | e8c7cb474d |
|
@ -0,0 +1,59 @@
|
||||||
|
`timescale 1ns / 1ps
|
||||||
|
`include "tb_tools.vh"
|
||||||
|
|
||||||
|
module tb_module_program_counter ();
|
||||||
|
reg clk;
|
||||||
|
reg reset;
|
||||||
|
reg is_jmp;
|
||||||
|
reg alu_not;
|
||||||
|
reg [1:0] is_branch;
|
||||||
|
reg [31:0] alu_out;
|
||||||
|
reg [31:0] imm;
|
||||||
|
wire [31:0] addr;
|
||||||
|
|
||||||
|
integer i;
|
||||||
|
|
||||||
|
module_program_counter module_program_counter (
|
||||||
|
.clock(clk),
|
||||||
|
.reset(reset),
|
||||||
|
.is_jmp(is_jmp),
|
||||||
|
.alu_not(alu_not),
|
||||||
|
.is_branch(is_branch),
|
||||||
|
.alu_out(alu_out),
|
||||||
|
.imm(imm),
|
||||||
|
.addr(addr)
|
||||||
|
);
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
clk = 1'b0;
|
||||||
|
for (i = 0; i < 100; i = i + 1) begin
|
||||||
|
#1 clk = ~clk;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
|
||||||
|
reset = 1'b1;
|
||||||
|
is_jmp = 1'b0;
|
||||||
|
alu_not = 1'b0;
|
||||||
|
is_branch = 2'b00;
|
||||||
|
alu_out = 32'b0;
|
||||||
|
imm = 32'b0;
|
||||||
|
#10
|
||||||
|
reset = 1'b0;
|
||||||
|
`assert_no_wait("module_program_counter is_jmp: 0, is_branch: 0, alu_not: 0, alu_out: 0, imm: 0", addr, 0)
|
||||||
|
<<<<<<< HEAD
|
||||||
|
#2
|
||||||
|
`assert_no_wait("module_program_counter is_jmp: 0, is_branch: 0, alu_not: 0, alu_out: 0, imm: 0", addr, 4)
|
||||||
|
#2
|
||||||
|
`assert_no_wait("module_program_counter is_jmp: 0, is_branch: 0, alu_not: 0, alu_out: 0, imm: 0", addr, 8)
|
||||||
|
|
||||||
|
=======
|
||||||
|
>>>>>>> d6f7fb498b1347201d1c08f9c368aff27a10a77f
|
||||||
|
|
||||||
|
`end_message
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
endmodule : tb_module_program_counter
|
|
@ -2,7 +2,6 @@
|
||||||
`include "tb_tools.vh"
|
`include "tb_tools.vh"
|
||||||
|
|
||||||
module tb_registers_bank ();
|
module tb_registers_bank ();
|
||||||
integer i;
|
|
||||||
reg clk;
|
reg clk;
|
||||||
reg reset;
|
reg reset;
|
||||||
reg we;
|
reg we;
|
||||||
|
@ -13,6 +12,8 @@ module tb_registers_bank ();
|
||||||
wire [31:0] data_out_a;
|
wire [31:0] data_out_a;
|
||||||
wire [31:0] data_out_b;
|
wire [31:0] data_out_b;
|
||||||
|
|
||||||
|
integer i;
|
||||||
|
|
||||||
registers_bank registers_bank (
|
registers_bank registers_bank (
|
||||||
.clock(clk),
|
.clock(clk),
|
||||||
.reset(reset),
|
.reset(reset),
|
||||||
|
@ -25,12 +26,6 @@ module tb_registers_bank ();
|
||||||
.data_out_b(data_out_b)
|
.data_out_b(data_out_b)
|
||||||
);
|
);
|
||||||
|
|
||||||
initial begin
|
|
||||||
reset = 1'b1;
|
|
||||||
#10
|
|
||||||
reset = 1'b0;
|
|
||||||
end
|
|
||||||
|
|
||||||
initial begin
|
initial begin
|
||||||
clk = 1'b0;
|
clk = 1'b0;
|
||||||
for (i = 0; i < 100; i = i + 1) begin
|
for (i = 0; i < 100; i = i + 1) begin
|
||||||
|
@ -40,11 +35,14 @@ module tb_registers_bank ();
|
||||||
|
|
||||||
initial begin
|
initial begin
|
||||||
|
|
||||||
|
reset = 1'b1;
|
||||||
we = 1'b0;
|
we = 1'b0;
|
||||||
sel_in = 5'b00000;
|
sel_in = 5'b00000;
|
||||||
sel_out_a = 5'b00000;
|
sel_out_a = 5'b00000;
|
||||||
sel_out_b = 5'b00000;
|
sel_out_b = 5'b00000;
|
||||||
data_in = 32'b0;
|
data_in = 32'b0;
|
||||||
|
#10
|
||||||
|
reset = 1'b0;
|
||||||
`assert("registers_bank we: 0, sel_in: 0, sel_out_a: 0, sel_out_b: 0, data_in: 0", data_out_a, 0)
|
`assert("registers_bank we: 0, sel_in: 0, sel_out_a: 0, sel_out_b: 0, data_in: 0", data_out_a, 0)
|
||||||
we = 1'b1;
|
we = 1'b1;
|
||||||
data_in = 32'b1;
|
data_in = 32'b1;
|
||||||
|
|
Loading…
Reference in New Issue