summaryrefslogtreecommitdiff
path: root/target/avr/meson.build
blob: 7e8e29c59d0240a9e0820a18f1d20d03afda59ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
gen = [
  decodetree.process('insn.decode', extra_args: [ '--decode', 'decode_insn',
                                                  '--insnwidth', '16' ])
]

avr_ss = ss.source_set()
avr_softmmu_ss = ss.source_set()

avr_ss.add(gen)
avr_ss.add(files(
  'translate.c',
  'helper.c',
  'cpu.c',
  'gdbstub.c',
  'disas.c'))

avr_softmmu_ss.add(files('machine.c'))

target_arch += {'avr': avr_ss}
target_softmmu_arch += {'avr': avr_softmmu_ss}