qemu

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

meson.build (380B)


      1 gen = decodetree.process('insns.decode')
      2 
      3 hppa_ss = ss.source_set()
      4 hppa_ss.add(gen)
      5 hppa_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 
     14 hppa_softmmu_ss = ss.source_set()
     15 hppa_softmmu_ss.add(files(
     16   'machine.c',
     17   'mem_helper.c',
     18 ))
     19 
     20 target_arch += {'hppa': hppa_ss}
     21 target_softmmu_arch += {'hppa': hppa_softmmu_ss}