Add example project, devcontainer config and debugger config

This commit is contained in:
2025-04-26 23:30:03 +01:00
parent 5ffbe818b6
commit 0a5cf0d943
7 changed files with 376 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
myprog.sna myprog.tap myprog.sld: main.asm loader.asm print.asm
sjasmplus --sld=myprog.sld --fullpath main.asm
clean:
rm -f *.tap
rm -f *.sna
rm -f *.sld
rm -rf .tmp/
.PHONY: clean