diff --git a/ALU.v b/ALU.v index 619ef96..21c60e5 100644 --- a/ALU.v +++ b/ALU.v @@ -31,9 +31,9 @@ reg shift_rotate; wire [BITS:0] add_out; wire [BITS-1:0] lshift [0:LOG2_BITS]; -wire [LOG2_BITS:0] lshift_overflow; +wire [LOG2_BITS-1:0] lshift_overflow; wire [BITS-1:0] rshift [0:LOG2_BITS]; -wire [LOG2_BITS:0] rshift_underflow; +wire [LOG2_BITS-1:0] rshift_underflow; assign z = i_z[7:0]; assign o_flags = i_flg; @@ -42,33 +42,13 @@ FastAdder8 fa8(.cin(), .a(a), .b(b), .out(add_out[BITS-1:0]), .cout(add_out[BITS genvar i; generate - for(i = 1; i