Fixed 2 bit module

This commit is contained in:
WilliamMiceli
2019-03-16 13:02:18 -04:00
parent 19ac8e130c
commit c988ddb899

View File

@@ -965,7 +965,7 @@ module sign_extend_2bit(
input wire [1:0] A,
output wire [8:0] B);
B = {{7{A[1]}},A};
assign B = {{7{A[1]}},A};
endmodule