Advertisement
ALTracer

STM32F7 ETMv4 regdump

Nov 11th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. $ gdb-multiarch -q -ex "target extended-remote localhost:2000"
  2. Remote debugging using localhost:2000
  3. (gdb) mon s
  4. Target voltage: 3.22V
  5. Available Targets:
  6. No. Att Driver
  7. 1 STM32F72x M7
  8. (gdb) att 1
  9. Attaching to Remote target
  10. warning: No executable has been specified and target does not support
  11. determining executable automatically. Try using the "file" command.
  12. 0x080085d4 in ?? ()
  13. (gdb) set mem inaccessible-by-default off
  14. (gdb) x/4zw 0xe0041000
  15. 0xe0041000: 0x00000000 0x00000000 0x00000000 0x00000003
  16. (gdb) x/16zw 0xe0041fc0
  17. 0xe0041fc0: 0x00000000 0x00000000 0x00000000 0x00000013
  18. 0xe0041fd0: 0x00000004 0x00000000 0x00000000 0x00000000
  19. 0xe0041fe0: 0x00000075 0x000000b9 0x0000001b 0x00000000
  20. 0xe0041ff0: 0x0000000d 0x00000090 0x00000005 0x000000b1
  21. (gdb) dump binary memory stm32f7x-etmv4.bin 0xe0041000 0xe0042000
  22.  
  23. $ hexdump -C stm32f7x-etmv4.bin
  24. 00000000 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 |................|
  25. 00000010 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  26. 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  27. 00000030 00 00 00 00 0a 00 00 00 00 00 00 00 00 00 00 00 |................|
  28. 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  29. *
  30. 00000180 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  31. *
  32. 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  33. *
  34. 000001e0 e1 06 00 08 01 f4 00 41 04 00 00 00 04 00 09 07 |.......A........|
  35. 000001f0 00 40 11 00 02 00 c7 90 00 00 00 00 00 00 00 00 |.@..............|
  36. 00000200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  37. *
  38. 000002a0 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  39. 000002b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  40. *
  41. 00000310 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 |................|
  42. 00000320 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  43. *
  44. 00000fa0 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  45. 00000fb0 00 00 00 00 00 00 00 00 c0 00 00 00 13 4a 70 47 |.............JpG|
  46. 00000fc0 00 00 00 00 00 00 00 00 00 00 00 00 13 00 00 00 |................|
  47. 00000fd0 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  48. 00000fe0 75 00 00 00 b9 00 00 00 1b 00 00 00 00 00 00 00 |u...............|
  49. 00000ff0 0d 00 00 00 90 00 00 00 05 00 00 00 b1 00 00 00 |................|
  50. 00001000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement