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