2020-08-07 13:10:23 +03:00
|
|
|
gen = decodetree.process('insns.decode')
|
|
|
|
|
|
|
|
hppa_ss = ss.source_set()
|
|
|
|
hppa_ss.add(gen)
|
|
|
|
hppa_ss.add(files(
|
|
|
|
'cpu.c',
|
2022-12-17 18:10:06 +03:00
|
|
|
'fpu_helper.c',
|
2020-08-07 13:10:23 +03:00
|
|
|
'gdbstub.c',
|
|
|
|
'helper.c',
|
|
|
|
'op_helper.c',
|
|
|
|
'translate.c',
|
|
|
|
))
|
|
|
|
|
2023-06-13 16:33:47 +03:00
|
|
|
hppa_system_ss = ss.source_set()
|
|
|
|
hppa_system_ss.add(files(
|
2023-06-03 01:11:54 +03:00
|
|
|
'int_helper.c',
|
2021-09-15 02:39:34 +03:00
|
|
|
'machine.c',
|
|
|
|
'mem_helper.c',
|
2022-12-17 18:18:29 +03:00
|
|
|
'sys_helper.c',
|
2021-09-15 02:39:34 +03:00
|
|
|
))
|
2020-08-07 13:10:23 +03:00
|
|
|
|
|
|
|
target_arch += {'hppa': hppa_ss}
|
2023-10-04 12:06:27 +03:00
|
|
|
target_system_arch += {'hppa': hppa_system_ss}
|