Runtime tests and riscv tests are runnable

This commit is contained in:
MalikBurton
2020-07-28 16:04:27 -04:00
parent e0f729e11e
commit 7fc7bc0cab
7 changed files with 105 additions and 91 deletions

View File

@@ -27,6 +27,9 @@ $(PROJECT).hex: $(PROJECT).elf
$(PROJECT).elf: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) $(LDFLAGS) -o $(PROJECT).elf
run: $(PROJECT).hex
(cd ../../../hw/simulate/obj_dir && ./VVortex -f ../../../runtime/tests/dev/$(PROJECT).hex)
.depend: $(SRCS)
$(CC) $(CFLAGS) -MM $^ > .depend;