I'm trying to disassemble a arm64 based binary I want to know how can I reformat structure as it was before I mean not strings but the values at least placed that they were before in code? Take example
static struct mystruct cmn = {
{ 0xFF, 0x03, {0x98, 0x81, 0x03} },
{ 0x01, 0x01, {0x00} },
{ 0x02, 0x01, {0x00} },
{ 0x03, 0x01, {0x53} },
};
But in binary it's actually hard to remember and I sometimes make mistakes while reversing. So, it possible to get a exactly same arranged chars in ida pro 7.2 or radare 2?