2020-08-07 12:10:23 +02:00
|
|
|
alpha_ss = ss.source_set()
|
|
|
|
alpha_ss.add(files(
|
|
|
|
'cpu.c',
|
|
|
|
'fpu_helper.c',
|
|
|
|
'gdbstub.c',
|
|
|
|
'helper.c',
|
|
|
|
'int_helper.c',
|
|
|
|
'mem_helper.c',
|
|
|
|
'sys_helper.c',
|
|
|
|
'translate.c',
|
|
|
|
'vax_helper.c',
|
|
|
|
))
|
|
|
|
|
2023-06-13 15:33:47 +02:00
|
|
|
alpha_system_ss = ss.source_set()
|
|
|
|
alpha_system_ss.add(files('machine.c'))
|
2020-08-07 12:10:23 +02:00
|
|
|
|
|
|
|
target_arch += {'alpha': alpha_ss}
|
2023-06-13 15:33:47 +02:00
|
|
|
target_softmmu_arch += {'alpha': alpha_system_ss}
|