mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
target/m68k: Make semihosting system only
While we had a call to do_m68k_semihosting in linux-user, it wasn't actually reachable. We don't include DISAS_INSN(halt) as an instruction unless system mode. Reviewed-by: Laurent Vivier <laurent@vivier.eu> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
ab294b6c3a
commit
a638af09b6
3 changed files with 4 additions and 43 deletions
|
@ -4,14 +4,16 @@ m68k_ss.add(files(
|
|||
'fpu_helper.c',
|
||||
'gdbstub.c',
|
||||
'helper.c',
|
||||
'm68k-semi.c',
|
||||
'op_helper.c',
|
||||
'softfloat.c',
|
||||
'translate.c',
|
||||
))
|
||||
|
||||
m68k_softmmu_ss = ss.source_set()
|
||||
m68k_softmmu_ss.add(files('monitor.c'))
|
||||
m68k_softmmu_ss.add(files(
|
||||
'm68k-semi.c',
|
||||
'monitor.c'
|
||||
))
|
||||
|
||||
target_arch += {'m68k': m68k_ss}
|
||||
target_softmmu_arch += {'m68k': m68k_softmmu_ss}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue