hw/dma: Add SiFive platform DMA controller emulation
[qemu/ar7.git] / target / mips / meson.build
blobfa1f024e782fe5bd39df687836e456912ec4bc8d
1 mips_ss = ss.source_set()
2 mips_ss.add(files(
3   'cp0_helper.c',
4   'cpu.c',
5   'dsp_helper.c',
6   'fpu_helper.c',
7   'gdbstub.c',
8   'helper.c',
9   'lmmi_helper.c',
10   'msa_helper.c',
11   'op_helper.c',
12   'translate.c',
14 mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
16 mips_softmmu_ss = ss.source_set()
17 mips_softmmu_ss.add(files(
18   'cp0_timer.c',
19   'machine.c',
20   'mips-semi.c',
23 target_arch += {'mips': mips_ss}
24 target_softmmu_arch += {'mips': mips_softmmu_ss}