Handle breakpoints for PPC (#23)

Co-authored-by: Your Name <you@example.com>
This commit is contained in:
WorksButNotTested 2023-06-01 13:56:57 +01:00 committed by GitHub
parent 6ae8b5bfb0
commit daa7a49dab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,6 +81,16 @@ void cpu_loop(CPUPPCState *env)
arch_interrupt = true;
switch (trapnr) {
//// --- Begin LibAFL code ---
#define EXCP_LIBAFL_BP 0xf4775747
case EXCP_LIBAFL_BP:
return;
//// --- End LibAFL code ---
case POWERPC_EXCP_NONE:
/* Just go on */
break;