i am trying to assing bitwise and of array to single bit wire
wire [3:0] mpu_region_vr0 = `MPU_PATH.mpu_region_v_r;///rtl path
wire mpu_region_vr =mpu_region_vr0[0] &
mpu_region_vr0[1] &
mpu_region_vr0[2] &
mpu_region_vr0[3] ;
i tried with the function .and() as well still am getting same error is it tool related issue?
i am getting
Incompatible unpacked dimensions in assignment
Arrays with incompatible unpacked dimensions cannot be used in assignments,
initializations and instantiations.