qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

meson.build (409B)


      1 gen = decodetree.process('insns.decode')
      2 
      3 microblaze_ss = ss.source_set()
      4 microblaze_ss.add(gen)
      5 microblaze_ss.add(files(
      6   'cpu.c',
      7   'gdbstub.c',
      8   'helper.c',
      9   'op_helper.c',
     10   'translate.c',
     11 ))
     12 
     13 microblaze_softmmu_ss = ss.source_set()
     14 microblaze_softmmu_ss.add(files(
     15   'mmu.c',
     16   'machine.c',
     17 ))
     18 
     19 target_arch += {'microblaze': microblaze_ss}
     20 target_softmmu_arch += {'microblaze': microblaze_softmmu_ss}