diff options
Diffstat (limited to 'TEST_SevSegDisp.v')
-rw-r--r-- | TEST_SevSegDisp.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TEST_SevSegDisp.v b/TEST_SevSegDisp.v index a818547..e03bfae 100644 --- a/TEST_SevSegDisp.v +++ b/TEST_SevSegDisp.v @@ -28,12 +28,12 @@ module TEST_SevSegDisp; reg [3:0] A; // Outputs - wire [6:0] out; + wire [6:0] result; // Instantiate the Unit Under Test (UUT) SevSegDisp uut ( .A(A), - .out(out) + .result(result) ); reg [3:0] i = 0; initial begin |