cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

meson.build (444B)


      1gen = [
      2  decodetree.process('insn.decode', extra_args: [ '--decode', 'decode_insn',
      3                                                  '--insnwidth', '16' ])
      4]
      5
      6avr_ss = ss.source_set()
      7avr_softmmu_ss = ss.source_set()
      8
      9avr_ss.add(gen)
     10avr_ss.add(files(
     11  'translate.c',
     12  'helper.c',
     13  'cpu.c',
     14  'gdbstub.c',
     15  'disas.c'))
     16
     17avr_softmmu_ss.add(files('machine.c'))
     18
     19target_arch += {'avr': avr_ss}
     20target_softmmu_arch += {'avr': avr_softmmu_ss}