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