1.1 diff -r 73de224304c1 -r d6c693415d59 lm32_shifter.v 1.2 --- a/lm32_shifter.v Sat Aug 06 00:02:46 2011 +0100 1.3 +++ b/lm32_shifter.v Sat Aug 06 01:26:56 2011 +0100 1.4 @@ -139,15 +139,15 @@ 1.5 begin 1.6 if (rst_i == `TRUE) 1.7 begin 1.8 - right_shift_result <= #1 {`LM32_WORD_WIDTH{1'b0}}; 1.9 - direction_m <= #1 `FALSE; 1.10 + right_shift_result <= {`LM32_WORD_WIDTH{1'b0}}; 1.11 + direction_m <= `FALSE; 1.12 end 1.13 else 1.14 begin 1.15 if (stall_x == `FALSE) 1.16 begin 1.17 - right_shift_result <= #1 {right_shift_in, right_shift_operand} >> operand_1_x[`LM32_SHIFT_RNG]; 1.18 - direction_m <= #1 direction_x; 1.19 + right_shift_result <= {right_shift_in, right_shift_operand} >> operand_1_x[`LM32_SHIFT_RNG]; 1.20 + direction_m <= direction_x; 1.21 end 1.22 end 1.23 end