mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-06-20 20:17:54 +00:00
target-m68k: fix DEBUG_DISPATCH
Backports commit a1ff19302007986fa081738e88905a715bd68e2e from qemu
This commit is contained in:
parent
83a5bf2d25
commit
fd84549b3e
|
@ -140,7 +140,7 @@ typedef void (*disas_proc)(CPUM68KState *env, DisasContext *s, uint16_t insn);
|
||||||
uint16_t insn) \
|
uint16_t insn) \
|
||||||
{ \
|
{ \
|
||||||
qemu_log("Dispatch " #name "\n"); \
|
qemu_log("Dispatch " #name "\n"); \
|
||||||
real_disas_##name(s, env, insn); \
|
real_disas_##name(env, s, insn); \
|
||||||
} \
|
} \
|
||||||
static void real_disas_##name(CPUM68KState *env, DisasContext *s, \
|
static void real_disas_##name(CPUM68KState *env, DisasContext *s, \
|
||||||
uint16_t insn)
|
uint16_t insn)
|
||||||
|
|
Loading…
Reference in a new issue