summaryrefslogtreecommitdiffstats
path: root/misplays.c
diff options
context:
space:
mode:
authorMatt Hunter <m@lfurio.us>2025-09-07 06:43:22 -0400
committerMatt Hunter <m@lfurio.us>2025-09-07 06:43:22 -0400
commit1001499baec9e8d6fb25c641b2a0577ccd419d6f (patch)
tree91bd8d29e34b2780a57e85623988be40babe2c85 /misplays.c
parent3b03d95a22a99df7d84647179a86f8c7f534868a (diff)
parentb2d6f5a4c75e8f68cb27edad38455375b500323b (diff)
downloadmisplays-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misplays.c b/misplays.c
index 6c9a189..20da6bb 100644
--- a/misplays.c
+++ b/misplays.c
@@ -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;