aboutsummaryrefslogtreecommitdiff
path: root/newasm/Makefile
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-08-21 03:18:35 -0500
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-08-21 03:18:35 -0500
commitccc04526f14764d856ad37b1f517308fccf886a6 (patch)
tree7c25442967b071a485a44c1da73b16ba84adc9af /newasm/Makefile
parented6f1106322f8ca4a6e26d08365bb9558ffa9d09 (diff)
Add label and opcode parsers
Diffstat (limited to 'newasm/Makefile')
-rw-r--r--newasm/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/newasm/Makefile b/newasm/Makefile
index 3302630..7b31eb4 100644
--- a/newasm/Makefile
+++ b/newasm/Makefile
@@ -10,7 +10,8 @@ parse.he: parse.bin
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
+objects = main.o uart.o data.o string.o input.o \
+ statement.o whitespace.o label.o symbol.o opcode.o
parse.elf: pico_bin.ld $(objects)
arm-none-eabi-ld -T pico_bin.ld -o parse.elf $(objects)