2021-04-13 10:47:10 +02:00
|
|
|
gen = [
|
2021-08-01 20:29:29 +02:00
|
|
|
decodetree.process('rel6.decode', extra_args: ['--decode=decode_isa_rel6']),
|
2021-05-29 20:06:13 +02:00
|
|
|
decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'),
|
2021-04-13 10:47:10 +02:00
|
|
|
decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'),
|
|
|
|
]
|
|
|
|
|
|
|
|
mips_ss.add(gen)
|
|
|
|
mips_ss.add(files(
|
|
|
|
'dsp_helper.c',
|
|
|
|
'exception.c',
|
|
|
|
'fpu_helper.c',
|
|
|
|
'ldst_helper.c',
|
|
|
|
'lmmi_helper.c',
|
|
|
|
'msa_helper.c',
|
|
|
|
'msa_translate.c',
|
|
|
|
'op_helper.c',
|
|
|
|
'rel6_translate.c',
|
|
|
|
'translate.c',
|
|
|
|
'translate_addr_const.c',
|
|
|
|
'txx9_translate.c',
|
2020-11-16 16:41:05 +01:00
|
|
|
'vr54xx_helper.c',
|
2021-04-13 10:47:10 +02:00
|
|
|
))
|
|
|
|
mips_ss.add(when: 'TARGET_MIPS64', if_true: files(
|
|
|
|
'tx79_translate.c',
|
|
|
|
), if_false: files(
|
|
|
|
'mxu_translate.c',
|
|
|
|
))
|
|
|
|
|
2021-04-18 15:16:06 +02:00
|
|
|
if have_user
|
|
|
|
subdir('user')
|
|
|
|
endif
|
2021-04-13 11:51:53 +02:00
|
|
|
if have_system
|
|
|
|
subdir('sysemu')
|
|
|
|
endif
|