20. Number Representation

Question.3

What are the 8-bit bit-vector values stored in max_val_a, max_val_c, and max_val_d respectively ?

wire [7:0] max_val_a = 25;
wire [7:0] max_val_c = 5'd25;
wire [7:0] max_val_d = 8'o25;

 

Need Help? Refer to the Quick Guide below

Select Answer