Removed kernel

This commit is contained in:
felsabbagh3
2019-11-07 00:15:07 -05:00
parent 9e2de897f0
commit 9a0c5e0dbc
29 changed files with 0 additions and 5086 deletions

View File

@@ -1,26 +0,0 @@
COMP = /opt/riscv/bin/riscv32-unknown-elf-gcc
CC_FLAGS = -march=rv32im -mabi=ilp32 -O0 -Wl,-Bstatic,-T,linker.ld -ffreestanding -nostdlib
DMP = /opt/riscv/bin/riscv32-unknown-elf-objdump
CPY = /opt/riscv/bin/riscv32-unknown-elf-objcopy
VX_STR = ./startup/vx_start.s
VX_INT = ./intrinsics/vx_intrinsics.s
VX_IO = ./io/vx_io.s ./io/vx_io.c
VX_API = ./vx_api/vx_api.c
VX_TEST = ./tests/tests.c
VX_MAIN = ./vx_main.c
all: HEX DUMP ELF
DUMP: ELF
$(DMP) -D vortex_runtime.elf > vortex_runtime.dump
HEX: ELF
$(CPY) -O ihex vortex_runtime.elf vortex_runtime.hex
ELF:
$(COMP) $(CC_FLAGS) $(VX_STR) $(VX_INT) $(VX_IO) $(VX_API) $(VX_TEST) $(VX_MAIN) -o vortex_runtime.elf