master
build 29 lines 426 Bytes
Raw
1 if 'CONFIG_TCG' not in config_all_accel
2 subdir_done()
3 endif
4
5 riscv_ss.add(files(
6 'bitmanip_helper.c',
7 'cpu_helper.c',
8 'csr.c',
9 'crypto_helper.c',
10 'fpu_helper.c',
11 'm128_helper.c',
12 'op_helper.c',
13 'translate.c',
14 'tcg-cpu.c',
15 'vcrypto_helper.c',
16 'vector_helper.c',
17 'vector_internals.c',
18 'zce_helper.c'))
19
20
21 riscv_system_ss.add(files(
22 'debug.c',
23 'mips_csr.c',
24 'pmp.c',
25 'pmu.c',
26 'th_csr.c',
27 ))
28
29