changed python tools to python3.11

This commit is contained in:
Michael Schröder
2023-08-04 16:44:31 +02:00
parent f476ed8da2
commit b16bfcfd43
32 changed files with 111 additions and 57 deletions

View File

@@ -1,12 +1,14 @@
PYTHON = /bin/python3.11
leds:
../tools/Assembler/assembler.pyc leds.asm
$(PYTHON) ../tools/Assembler/assembler.pyc leds.asm
cp leds.hack ../05_Computer_Architecture/04_HACK/ROM.hack
mult:
../tools/Assembler/assembler.pyc mult.asm
$(PYTHON) ../tools/Assembler/assembler.pyc mult.asm
cp mult.hack ../05_Computer_Architecture/04_HACK/ROM.hack
upload:
../tools/Assembler/assembler.pyc leds.asm
../tools/AsciiToBin.py leds.hack
$(PYTHON) ../tools/Assembler/assembler.pyc leds.asm
$(PYTHON) ../tools/AsciiToBin.py leds.hack
iceprogduino -o 64k -w leds.bin
clean:
rm -f *.hack *~ *.bin