System verilog data type

unsigned logic [7:0] x
signed byte x

Are they same ??__

In reply to mudititm:

No they are not the same. One is signed and one is unsigned, which can affect arithmetic operations like multiplication and division, and comparison operators like > and <.

In reply to mudititm:

Also keep in mind, logic type supports 4 states (X, Z, 0, 1) and byte type only supports 2 states (0, 1)