1m68k_ss = ss.source_set() 2m68k_ss.add(files( 3 'cpu.c', 4 'fpu_helper.c', 5 'gdbstub.c', 6 'helper.c', 7 'op_helper.c', 8 'softfloat.c', 9 'translate.c', 10)) 11 12m68k_system_ss = ss.source_set() 13m68k_system_ss.add(files( 14 'm68k-semi.c', 15 'monitor.c' 16)) 17 18target_arch += {'m68k': m68k_ss} 19target_system_arch += {'m68k': m68k_system_ss} 20