dev: created cold/warm boot entry points and stubs

This commit is contained in:
A.M. Rowsell 2025-12-21 14:22:54 -05:00
commit a4761efed2
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
5 changed files with 24 additions and 4 deletions

View file

@ -17,10 +17,13 @@ vectorTable.o: vectorTable.asm
zone.o: zone.asm
$(ASM) $(ASMFLAGS) -o $@ $<
zone.hex: float.o vectorTable.o zone.o linker.cmd
$(LINK) $(LINKFLAGS) -o $@ float.o vectorTable.o zone.o
boot.o: boot.asm
$(ASM) $(ASMFLAGS) -o $@ $<
zone.hex: float.o vectorTable.o zone.o boot.o linker.cmd
$(LINK) $(LINKFLAGS) -o $@ float.o vectorTable.o zone.o boot.o
clean:
rm -f float.o vectorTable.o zone.o zone.hex
rm -f float.o vectorTable.o zone.o boot.o zone.hex
.PHONY: all clean