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 (409B)


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