Saranya P U
07/24/2024, 6:37 AMTim Edwards
07/24/2024, 1:44 PMptr1
and ptr
variables is bypassing that. I suggest just doing
uint32_t value;
...
value = reg_wb_in1;
print_hex(value, 8);
or even just
print_hex(reg_wb_in1, 8);
Saranya P U
07/25/2024, 4:32 AMTim Edwards
07/25/2024, 8:03 PMSaranya P U
07/26/2024, 6:10 AMprint_hex(reg_wb_in1, 8);
@Tim Edwards by giving this line also we are getting value as 0000ffff . The value given is reg_wb_in1 = 0x0101ffff;and when we change the input to reg_wb_in1 = 0x01010101; the value displayed is 00000000.Saranya P U
07/26/2024, 6:14 AM