Makefile now assembles and interprets instruction-test.asm example first

This commit is contained in:
2023-11-08 18:16:53 +00:00
parent cb2416554b
commit 1935277716

View File

@@ -40,7 +40,7 @@ ASM_OUT=$(DIST)/asm.out
## EXAMPLES setup
EXAMPLES_DIST=$(DIST)/examples
EXAMPLES_SRC=examples
EXAMPLES=$(EXAMPLES_DIST)/fib.out $(EXAMPLES_DIST)/factorial.out $(EXAMPLES_DIST)/instruction-test.out $(EXAMPLES_DIST)/memory-print.out
EXAMPLES=$(EXAMPLES_DIST)/instruction-test.out $(EXAMPLES_DIST)/fib.out $(EXAMPLES_DIST)/factorial.out $(EXAMPLES_DIST)/memory-print.out
# Things you want to build on `make`
all: $(DIST) lib vm asm examples