Driver code, currently segfaulting

This commit is contained in:
Imbus 2024-06-23 16:27:51 +02:00
parent e24b2f7904
commit 7ae336d499
5 changed files with 48 additions and 15 deletions

View file

@ -25,6 +25,12 @@ all: $(OBJECTS)
@$(CC) $(CFLAGS) -S -masm=intel $<
wc -l $@
driver: $(OBJECTS)
@$(CC) $(CFLAGS) $^ -o $@
run: driver
@./driver
clean:
rm -f $(OBJECTS) $(ASMS)