1gen = decodetree.process('insns.decode') 2 3hppa_ss = ss.source_set() 4hppa_ss.add(gen) 5hppa_ss.add(files( 6 'cpu.c', 7 'fpu_helper.c', 8 'gdbstub.c', 9 'helper.c', 10 'op_helper.c', 11 'translate.c', 12)) 13 14hppa_system_ss = ss.source_set() 15hppa_system_ss.add(files( 16 'int_helper.c', 17 'machine.c', 18 'mem_helper.c', 19 'sys_helper.c', 20)) 21 22target_arch += {'hppa': hppa_ss} 23target_softmmu_arch += {'hppa': hppa_system_ss} 24