Fixed a bug where numbers weren't being added to the token list (I'm very dumb it seems) and added hexadecimal support to the scanner.

This commit is contained in:
2022-05-04 22:37:49 -05:00
parent 101f206dce
commit caeaaefbf0
2 changed files with 31 additions and 12 deletions
+5 -1
View File
@@ -29,9 +29,13 @@ $(OBJDIR):
.PHONY: clean
.PHONY: test
.PHONY: disass
clean:
rm -rf $(BINDIR)/* $(OBJDIR)/*
test:
$(BIN) misc/test.asm
$(BIN) misc/test.asm
disass:
objdump -S --disassemble $(OBJDIR)/$(FILE).o > $(OBJDIR)/$(FILE).s