diff options
Diffstat (limited to 'control_unit/v0.1/test_control_unit.v')
-rw-r--r-- | control_unit/v0.1/test_control_unit.v | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/control_unit/v0.1/test_control_unit.v b/control_unit/v0.1/test_control_unit.v new file mode 100644 index 0000000..2398da2 --- /dev/null +++ b/control_unit/v0.1/test_control_unit.v @@ -0,0 +1,21 @@ +`timescale 1ns/1ps + +module test_contorl_unit; + +reg [3:0] opcode; +reg[1:0] alu_op; +reg jump, bne, beq, mem_read, mem_write, alu_src, reg_dst, mem_to_reg, reg_write; + +initial begin + $display("Start testing data path"); + $dumpfile("test_control_unit.vcd"); + $dumpvars(0,test_contorl_unit); +end + + + +initial begin + $monitor("At time=%t",$time); +end + +endmodule
\ No newline at end of file |