diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2017-01-07 15:26:04 -0600 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2017-01-08 22:02:28 -0600 |
commit | 7977ddd908a0af5ce4b176b05b31940cd7c8d50e (patch) | |
tree | 1b600d9e17a2de7c610b1304cf2914e7e35a3c7d /shifter_tb.v | |
parent | 209c6cf89e36ae3fdafa31543e77e5dd0047ece7 (diff) |
Remove trailing whitespace
Diffstat (limited to 'shifter_tb.v')
-rw-r--r-- | shifter_tb.v | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shifter_tb.v b/shifter_tb.v index 7d28915..278ac9a 100644 --- a/shifter_tb.v +++ b/shifter_tb.v @@ -7,7 +7,7 @@ module shifter_tb (); reg [1:0] extend; wire [15:0] result; reg [15:0] expected_result; - + // xxxxxxxxxxxxxxxx1111101000001010xxxxxxxxxxxxxxxx initial begin @@ -68,15 +68,15 @@ module shifter_tb (); dir = 1'b0; by = 16'hE; expected_result = 16'h7FFF; - + #2 by = 16'h10; expected_result = 16'hFFFF; - + #2 dir = 1'b1; expected_result = 16'h0000; - + #2 dir = 1'b0; by = 16'h1000; @@ -85,11 +85,11 @@ module shifter_tb (); #2 dir = 1'b1; expected_result = 16'h0000; - + #5 $stop; end - + shifter shifter_inst ( .v(v), .by(by), |