To complement Michael's answer.
I tend to use:
memory read -s1 -fu -c10000 0xb0987654 --force
That will print in the debugger.
- -s for bytes grouping so use 1 for uint8 for example and 4 for int
- -f for format. I inherently forget the right symbol. Just put the statement with -f and it will snap back at you and give you the list of all the options
- -c is for count of bytes
- if you are printing more than 1024 bytes, append with --force
Hope this helps.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…