master
build 18 lines 387 Bytes
Raw
1 gen = [
2 decodetree.process('insns.decode', extra_args: [ '--varinsnwidth', '32' ])
3 ]
4
5 rx_ss = ss.source_set()
6 rx_ss.add(gen)
7 rx_ss.add(files(
8 'translate.c',
9 'op_helper.c',
10 'helper.c',
11 'cpu.c',
12 'disas.c'))
13
14 rx_common_system_ss = ss.source_set()
15 rx_common_system_ss.add(files('gdbstub.c'))
16
17 target_arch += {'rx': rx_ss}
18 target_common_system_arch += {'rx': rx_common_system_ss}