QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
684 B
29 lines
684 B
m68k_ss = ss.source_set()
|
|
m68k_ss.add(files(
|
|
'cpu.c',
|
|
'fpu_helper.c',
|
|
'helper.c',
|
|
'op_helper.c',
|
|
'softfloat.c',
|
|
'translate.c',
|
|
))
|
|
|
|
m68k_user_ss = ss.source_set()
|
|
m68k_user_ss.add(files('gdbstub.c'))
|
|
|
|
m68k_common_system_ss = ss.source_set()
|
|
m68k_common_system_ss.add(files('gdbstub.c'))
|
|
|
|
m68k_system_ss = ss.source_set()
|
|
m68k_system_ss.add(files(
|
|
'monitor.c'
|
|
))
|
|
m68k_system_ss.add(when: ['CONFIG_SEMIHOSTING'],
|
|
if_true: files('m68k-semi.c'),
|
|
if_false: files('semihosting-stub.c')
|
|
)
|
|
|
|
target_arch += {'m68k': m68k_ss}
|
|
target_user_arch += {'m68k': m68k_user_ss}
|
|
target_system_arch += {'m68k': m68k_system_ss}
|
|
target_common_system_arch += {'m68k': m68k_common_system_ss}
|
|
|