mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
576 B
Meson
26 lines
576 B
Meson
gen = decodetree.process('insns.decode')
|
|
|
|
sparc_ss = ss.source_set()
|
|
sparc_ss.add(gen)
|
|
sparc_ss.add(files(
|
|
'cpu.c',
|
|
'fop_helper.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'ldst_helper.c',
|
|
'translate.c',
|
|
'win_helper.c',
|
|
))
|
|
sparc_ss.add(when: 'TARGET_SPARC', if_true: files('int32_helper.c'))
|
|
sparc_ss.add(when: 'TARGET_SPARC64', if_true: files('int64_helper.c', 'vis_helper.c'))
|
|
|
|
sparc_system_ss = ss.source_set()
|
|
sparc_system_ss.add(files(
|
|
'machine.c',
|
|
'mmu_helper.c',
|
|
'monitor.c',
|
|
))
|
|
|
|
target_arch += {'sparc': sparc_ss}
|
|
target_system_arch += {'sparc': sparc_system_ss}
|