| 1 | alpha_ss = ss.source_set() |
| 2 | alpha_ss.add(files( |
| 3 | 'cpu.c', |
| 4 | 'fpu_helper.c', |
| 5 | 'helper.c', |
| 6 | 'clk_helper.c', |
| 7 | 'int_helper.c', |
| 8 | 'mem_helper.c', |
| 9 | 'translate.c', |
| 10 | 'vax_helper.c', |
| 11 | )) |
| 12 | |
| 13 | alpha_user_ss = ss.source_set() |
| 14 | alpha_user_ss.add(files( |
| 15 | 'gdbstub.c', |
| 16 | )) |
| 17 | |
| 18 | alpha_common_system_ss = ss.source_set() |
| 19 | alpha_common_system_ss.add(files( |
| 20 | 'gdbstub.c', |
| 21 | 'machine.c', |
| 22 | 'sys_helper.c', |
| 23 | )) |
| 24 | |
| 25 | target_arch += {'alpha': alpha_ss} |
| 26 | target_user_arch += {'alpha': alpha_user_ss} |
| 27 | target_common_system_arch += {'alpha': alpha_common_system_ss} |