xref: /qemu/target/hppa/meson.build (revision b21e2380)
1gen = decodetree.process('insns.decode')
2
3hppa_ss = ss.source_set()
4hppa_ss.add(gen)
5hppa_ss.add(files(
6  'cpu.c',
7  'gdbstub.c',
8  'helper.c',
9  'int_helper.c',
10  'op_helper.c',
11  'translate.c',
12))
13
14hppa_softmmu_ss = ss.source_set()
15hppa_softmmu_ss.add(files(
16  'machine.c',
17  'mem_helper.c',
18))
19
20target_arch += {'hppa': hppa_ss}
21target_softmmu_arch += {'hppa': hppa_softmmu_ss}
22