aboutsummaryrefslogtreecommitdiff
path: root/target/microblaze/meson.build
blob: 639c3f73a888a23ebb39ef121c79455f2a374e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
gen = decodetree.process('insns.decode')

microblaze_ss = ss.source_set()
microblaze_ss.add(gen)
microblaze_ss.add(files(
  'cpu.c',
  'gdbstub.c',
  'helper.c',
  'op_helper.c',
  'translate.c',
))

microblaze_softmmu_ss = ss.source_set()
microblaze_softmmu_ss.add(files('mmu.c'))

target_arch += {'microblaze': microblaze_ss}
target_softmmu_arch += {'microblaze': microblaze_softmmu_ss}