8(a). Suppose Y is a 32-bit singned binary number. Please assign 1'b1 to Neg if Y is negatvie, otherwise assign 1'b0 to it. Write down the code frament.(You are not allow to use any operator, including &,|, +, if else, (condition)? : ...)
input [31:0] Y;
...
assign Neg = ...;
:::info
ANS
assign Neg = Y[31];