1# See LICENSE for license details.
2
3machine_subproject_deps = \
4  softfloat \
5
6machine_hdrs = \
7  atomic.h \
8  bits.h \
9  fdt.h \
10  emulation.h \
11  encoding.h \
12  fp_emulation.h \
13  htif.h \
14  mcall.h \
15  mtrap.h \
16  uart.h \
17  uart16550.h \
18  uart16750.h \
19  finisher.h \
20  unprivileged_memory.h \
21  vm.h \
22
23machine_c_srcs = \
24  fdt.c \
25  mtrap.c \
26  minit.c \
27  htif.c \
28  emulation.c \
29  muldiv_emulation.c \
30  fp_emulation.c \
31  fp_ldst.c \
32  uart.c \
33  uart16550.c \
34  uart16750.c \
35  finisher.c \
36  misaligned_ldst.c \
37  flush_icache.c \
38
39machine_asm_srcs = \
40  mentry.S \
41  fp_asm.S \
42