aboutsummaryrefslogtreecommitdiff
path: root/hdl/testbench.v
diff options
context:
space:
mode:
Diffstat (limited to 'hdl/testbench.v')
-rw-r--r--hdl/testbench.v7
1 files changed, 5 insertions, 2 deletions
diff --git a/hdl/testbench.v b/hdl/testbench.v
index fc9d23e..bf0955d 100644
--- a/hdl/testbench.v
+++ b/hdl/testbench.v
@@ -9,12 +9,15 @@ module testbench;
//Outputs
wire [7:0] led;
-
+ wire rot_a_i;
+ wire rot_b_i;
+
//Instantiate the Unit Under Test (UUT)
mips_system uut (
.clk(mips_clk),
.rst(mips_rst),
-
+ .rot_a_i(rot_a_i),
+ .rot_b_i(rot_b_i),
.led(led)
);