diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-08-23 19:46:17 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-08-23 19:46:17 -0500 |
commit | 80d8f3ae48255f786bd4d52a1819ea0c339f6946 (patch) | |
tree | 70126a16181caf459cfcf79fce983655a7a704e5 /newasm/Makefile | |
parent | b08def431c09449b5ad2ff4379fb403b2e1bf67b (diff) |
Add register parser and binary search for opcodes
Diffstat (limited to 'newasm/Makefile')
-rw-r--r-- | newasm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/newasm/Makefile b/newasm/Makefile index 7b31eb4..fd057fe 100644 --- a/newasm/Makefile +++ b/newasm/Makefile @@ -11,7 +11,13 @@ parse.bin: parse.elf arm-none-eabi-objcopy -O binary parse.elf parse.bin objects = main.o uart.o data.o string.o input.o \ - statement.o whitespace.o label.o symbol.o opcode.o + statement.o optable.o \ + parsers/whitespace.o \ + parsers/label.o \ + parsers/symbol.o \ + parsers/opcode.o \ + parsers/register.o \ + parsers/decimal.o parse.elf: pico_bin.ld $(objects) arm-none-eabi-ld -T pico_bin.ld -o parse.elf $(objects) |