docs/system: ppc: Update the URL for OpenPOWER firmware images
[qemu/rayw.git] / target / riscv / meson.build
blobd5e0bc93ea9c9fde990f6f7d09324cd644afbb9a
1 # FIXME extra_args should accept files()
2 dir = meson.current_source_dir()
4 gen = [
5   decodetree.process('insn16.decode', extra_args: ['--static-decode=decode_insn16', '--insnwidth=16']),
6   decodetree.process('insn32.decode', extra_args: '--static-decode=decode_insn32'),
9 riscv_ss = ss.source_set()
10 riscv_ss.add(gen)
11 riscv_ss.add(files(
12   'cpu.c',
13   'cpu_helper.c',
14   'csr.c',
15   'fpu_helper.c',
16   'gdbstub.c',
17   'op_helper.c',
18   'vector_helper.c',
19   'bitmanip_helper.c',
20   'translate.c',
23 riscv_softmmu_ss = ss.source_set()
24 riscv_softmmu_ss.add(files(
25   'arch_dump.c',
26   'pmp.c',
27   'monitor.c',
28   'machine.c'
31 target_arch += {'riscv': riscv_ss}
32 target_softmmu_arch += {'riscv': riscv_softmmu_ss}