I am trying to parse a register dump using python - 3. Here is the format of the dump
Here is the dump
bf080c40: 00000000 00000100 ffeeff3f 00100002 07ffffff 00000000
bf080c80: 00280000 00000000 00000000 00007101 00000001
I want something like this:
0xbf080c40 = 0x00000000
0xbf080c44 = 0x00000100
0xbf080c48 = 0xffeeff3f
0xbf080c50 = 0x07ffffff
0xbf080c54 = 0x00000000
0xbf080c80 = 0x00280000
0xbf080c84 = 0x00000000
0xbf080c88 = 0x00000000
0xbf080c8c = 0x00007101
User contributions licensed under CC BY-SA 3.0