You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
720 B
49 lines
720 B
# See LICENSE for license details.
|
|
|
|
machine_subproject_deps = \
|
|
softfloat \
|
|
|
|
machine_hdrs = \
|
|
atomic.h \
|
|
bits.h \
|
|
fdt.h \
|
|
emulation.h \
|
|
encoding.h \
|
|
fp_emulation.h \
|
|
htif.h \
|
|
mcall.h \
|
|
mtrap.h \
|
|
uart.h \
|
|
uart16550.h \
|
|
uart_litex.h \
|
|
finisher.h \
|
|
unprivileged_memory.h \
|
|
vm.h \
|
|
|
|
machine_c_srcs = \
|
|
fdt.c \
|
|
mtrap.c \
|
|
minit.c \
|
|
htif.c \
|
|
emulation.c \
|
|
muldiv_emulation.c \
|
|
fp_emulation.c \
|
|
fp_ldst.c \
|
|
uart.c \
|
|
uart16550.c \
|
|
uart_litex.c \
|
|
finisher.c \
|
|
misaligned_ldst.c \
|
|
misaligned_vec_ldst.c \
|
|
flush_icache.c \
|
|
|
|
machine_asm_srcs = \
|
|
mentry.S \
|
|
fp_asm.S \
|
|
|
|
ifneq (@CUSTOM_DTS@,no)
|
|
mentry.o: custom.dtb
|
|
|
|
custom.dtb: $(CUSTOM_DTS)
|
|
dtc -O dtb $^ -o $@
|
|
endif
|
|
|