a638af09b6
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>
20 lines
336 B
Meson
20 lines
336 B
Meson
m68k_ss = ss.source_set()
|
|
m68k_ss.add(files(
|
|
'cpu.c',
|
|
'fpu_helper.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'op_helper.c',
|
|
'softfloat.c',
|
|
'translate.c',
|
|
))
|
|
|
|
m68k_softmmu_ss = ss.source_set()
|
|
m68k_softmmu_ss.add(files(
|
|
'm68k-semi.c',
|
|
'monitor.c'
|
|
))
|
|
|
|
target_arch += {'m68k': m68k_ss}
|
|
target_softmmu_arch += {'m68k': m68k_softmmu_ss}
|