aboutsummaryrefslogtreecommitdiff
path: root/target/m68k/meson.build
blob: 8d3f9ce2880a69a770cccec5ce5ba733dd066e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
m68k_ss = ss.source_set()
m68k_ss.add(files(
  'cpu.c',
  'fpu_helper.c',
  'gdbstub.c',
  'helper.c',
  'op_helper.c',
  'softfloat.c',
  'translate.c',
))

m68k_system_ss = ss.source_set()
m68k_system_ss.add(files(
  'm68k-semi.c',
  'monitor.c'
))

target_arch += {'m68k': m68k_ss}
target_system_arch += {'m68k': m68k_system_ss}