1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-29 09:30:54 +10:00

tools/emul: add "make rescue" command

This commit is contained in:
Virgil Dupras 2019-05-20 08:58:53 -04:00
parent 848a7500bc
commit 207adbc2f8

View File

@ -47,6 +47,15 @@ updatebootstrap: $(ZASMBIN)
$(ZASMBIN) < zasm/glue.asm > zasm/kernel.bin $(ZASMBIN) < zasm/glue.asm > zasm/kernel.bin
$(ZASMBIN) < $(APPS)/zasm/glue.asm > zasm/zasm.bin $(ZASMBIN) < $(APPS)/zasm/glue.asm > zasm/zasm.bin
# Sometimes, when developing zasm, stuff get messed up and it's hard to unmess
# because zasm's brake-up ends up in its bootstrap bins. Sure, we can revert
# from git, but if we're in the middle of some work, it's inconvenient. As long
# as we don't diverge from scas's syntax, it can come to the recue!
.PHONY: rescue
rescue:
scas -o zasm/kernel.bin -I $(KERNEL) zasm/glue.asm
scas -o zasm/zasm.bin -I $(APPS) $(APPS)/zasm/glue.asm
.PHONY: clean .PHONY: clean
clean: clean:
rm -f $(TARGETS) zasm/{kernel,user}.h shell/kernel.h zasm/includes.* rm -f $(TARGETS) zasm/{kernel,user}.h shell/kernel.h zasm/includes.*