diff options
author | Matt Hunter <m@lfurio.us> | 2025-09-07 06:43:22 -0400 |
---|---|---|
committer | Matt Hunter <m@lfurio.us> | 2025-09-07 06:43:22 -0400 |
commit | 1001499baec9e8d6fb25c641b2a0577ccd419d6f (patch) | |
tree | 91bd8d29e34b2780a57e85623988be40babe2c85 /misplays.c | |
parent | 3b03d95a22a99df7d84647179a86f8c7f534868a (diff) | |
parent | b2d6f5a4c75e8f68cb27edad38455375b500323b (diff) | |
download | misplays-1001499baec9e8d6fb25c641b2a0577ccd419d6f.tar.gz misplays-1001499baec9e8d6fb25c641b2a0577ccd419d6f.zip |
Merge branch 'arm32'
Add initial 32-bit ARM support and additionally build out internal
breakpoint design to allow the use of single-step oriented breakpoints.
* arm32:
Always prune step breakpoints when uninstalling from memory
Update detect_breakpoint() to better handle single stepping
Add architecture-specific single step support
Add 32-bit ARM architecture params
Diffstat (limited to 'misplays.c')
-rw-r--r-- | misplays.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -402,7 +402,7 @@ int main(int argc, char **argv) { t++; } unsigned long address = strtoul(t, NULL, 0); - struct breakpoint *b = add_breakpoint(th->proc, address); + struct breakpoint *b = add_breakpoint(th->proc, address, 0); b->enabled = en; b->tid = tid; break; |