Added Makefile

This commit is contained in:
0xMAC8205 2023-10-25 11:34:43 +02:00
parent 3edad90788
commit 834b07fbfa
2 changed files with 13 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
# Please Ignore for now, I will make a better makefile in the future
# I promisse
all: compile upload
compile:
@echo "Compiling for 65c02"
@vasm6502_oldstyle -Fbin -dotdir -wdc02 main.s | grep :
upload:
@echo "Uploading"
@minipro -p SST39SF040 -w a.out -Sy

View File