qemu

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

meson.build (309B)


      1 gen = [
      2   decodetree.process('insns.decode', extra_args: [ '--varinsnwidth', '32' ])
      3 ]
      4 
      5 rx_ss = ss.source_set()
      6 rx_ss.add(gen)
      7 rx_ss.add(files(
      8   'translate.c',
      9   'op_helper.c',
     10   'helper.c',
     11   'cpu.c',
     12   'gdbstub.c',
     13   'disas.c'))
     14 
     15 target_arch += {'rx': rx_ss}
     16 target_softmmu_arch += {'rx': ss.source_set()}