Closed bjorn3 closed 4 years ago
The x causes all numbers to be formatted as hex. The # causes both an 0x prefix to be added to all hex numbers and the register struct to span multiple lines. The 016 causes all hex numbers to be zero padded to 16 chars.
x
#
0x
016
Found this trick at http://dtrace.org/blogs/bmc/2020/10/11/rust-after-the-honeymoon/
The
x
causes all numbers to be formatted as hex. The#
causes both an0x
prefix to be added to all hex numbers and the register struct to span multiple lines. The016
causes all hex numbers to be zero padded to 16 chars.Found this trick at http://dtrace.org/blogs/bmc/2020/10/11/rust-after-the-honeymoon/