fixed byte unit lints

This commit is contained in:
Kevin Kim 2023-02-11 20:25:34 -08:00
parent fb99bdab82
commit 61b46e0639

View File

@ -38,7 +38,7 @@ module byteUnit #(parameter WIDTH=32) (
for (i=0;i<WIDTH;i+=8) begin:loop for (i=0;i<WIDTH;i+=8) begin:loop
assign OrcBResult[i+7:i] = {8{|A[i+7:i]}}; assign OrcBResult[i+7:i] = {8{|A[i+7:i]}};
assign Rev8Result[WIDTH-i:WIDTH-i-7] = A[i+7:i]; assign Rev8Result[WIDTH-i-1:WIDTH-i-8] = A[i+7:i];
end end
endmodule endmodule