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