The numbers in Verilog. What do they mean?
width'base value. The base specifier is b (binary), o (octal), d (decimal), or h (hex), and is case-insensitive.
4'b1101 bit-width = 8'hAF bit-width = 6'o52 bit-width = 8'd200 bit-width = 4'hA and 4'ha represent the 4'b1_101 valid? 3'b1101 stored bits = 4'd20 stored bits = 3'hB stored bits = 4'b1101 sign = 4'b0110 sign = 8'hC0 sign = 4'b8'b4'b13 or 'hA) defaults to 32 bits in Verilog.
13 bit-width = 'hFF bit-width = 'b1010 bit-width = 0, 1, x (unknown), and z (high-impedance). Both can appear in literals.
x represents:z represents:4'b1x0z: bit[3] = wire has value:reg declared but never assigned has value: