diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-04-27 11:31:30 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-30 12:45:05 -0700 |
| commit | 9181ab452893a3f45cdc0f6196fbb9e389a4e5cd (patch) | |
| tree | 64ed75fff97f6b86b6169b655f78b7fb64fe0393 /target/m68k/cpu.c | |
| parent | 81ef6a2295740c4b2de9db2f81ebb9ad346b8cfc (diff) | |
| download | focaccia-qemu-9181ab452893a3f45cdc0f6196fbb9e389a4e5cd.tar.gz focaccia-qemu-9181ab452893a3f45cdc0f6196fbb9e389a4e5cd.zip | |
accel/tcg: Introduce TCGCPUOps.cpu_exec_reset
Initialize all instances with cpu_reset(), so that there is no functional change. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/m68k/cpu.c')
| -rw-r--r-- | target/m68k/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/m68k/cpu.c b/target/m68k/cpu.c index 6f33b86c7d..f446c6c8f7 100644 --- a/target/m68k/cpu.c +++ b/target/m68k/cpu.c @@ -602,6 +602,7 @@ static const TCGCPUOps m68k_tcg_ops = { .tlb_fill = m68k_cpu_tlb_fill, .cpu_exec_interrupt = m68k_cpu_exec_interrupt, .cpu_exec_halt = m68k_cpu_has_work, + .cpu_exec_reset = cpu_reset, .do_interrupt = m68k_cpu_do_interrupt, .do_transaction_failed = m68k_cpu_transaction_failed, #endif /* !CONFIG_USER_ONLY */ |