move avra.sh from emul to cvm

The stage binary is now there.
This commit is contained in:
Virgil Dupras 2020-06-27 07:32:19 -04:00
parent a65f674c74
commit ceabc9920f
2 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ forth: forth.c $(OBJS)
$(CC) forth.c $(OBJS) -lncurses -o $@
stage: stage.c $(OBJS)
$(CC) stage.c $(OBJS) -lncurses -o $@
$(CC) stage.c $(OBJS) -o $@
vm.o: vm.c blkfs
$(CC) -DFBIN_PATH=\"`pwd`/forth.bin\" -DBLKFS_PATH=\"`pwd`/blkfs\" -c -o vm.o vm.c