fix: fix crash when debugging ARMv7-M and set architecture mapping for ARM Cortex to thumb (#1401)

As per: https://developer.arm.com/documentation/ddi0403/d/Application-Level-Architecture/The-ARMv7-M-Instruction-Set/About-the-instruction-set/ARMv7-M-and-interworking-support?lang=en

"ARMv7-M only supports the Thumb instruction execution state"
pull/1408/head
Albert Koczy 3 years ago committed by GitHub
parent 2d537b5751
commit 71baca5116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,6 +18,7 @@ pwnlib_archs_mapping = {
"powerpc": "powerpc",
"sparc": "sparc",
"arm": "arm",
"armcm": "thumb",
}
arch = Arch("i386", typeinfo.ptrsize, "little")

Loading…
Cancel
Save