qemu

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

meson.build (909B)


      1 gen = [
      2   decodetree.process('rel6.decode', extra_args: ['--decode=decode_isa_rel6']),
      3   decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'),
      4   decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'),
      5   decodetree.process('vr54xx.decode', extra_args: '--decode=decode_ext_vr54xx'),
      6   decodetree.process('octeon.decode', extra_args: '--decode=decode_ext_octeon'),
      7 ]
      8 
      9 mips_ss.add(gen)
     10 mips_ss.add(files(
     11   'dsp_helper.c',
     12   'exception.c',
     13   'fpu_helper.c',
     14   'ldst_helper.c',
     15   'lmmi_helper.c',
     16   'msa_helper.c',
     17   'msa_translate.c',
     18   'op_helper.c',
     19   'rel6_translate.c',
     20   'translate.c',
     21   'translate_addr_const.c',
     22   'txx9_translate.c',
     23   'vr54xx_helper.c',
     24   'vr54xx_translate.c',
     25 ))
     26 mips_ss.add(when: 'TARGET_MIPS64', if_true: files(
     27   'tx79_translate.c',
     28   'octeon_translate.c',
     29 ), if_false: files(
     30   'mxu_translate.c',
     31 ))
     32 
     33 if have_system
     34   subdir('sysemu')
     35 endif