Moved "bios" to "os"

This commit is contained in:
Daniele Verducci su MatissePenguin
2020-12-30 20:14:03 +01:00
parent ef58b417e6
commit 53022fdafc
16 changed files with 3 additions and 3 deletions

11
assembly/os/Makefile Normal file
View File

@ -0,0 +1,11 @@
os:
@echo "Building PAT80 rom..."
@z80asm -i main.asm -o rom.bin || (exit 1)
@echo "Generating label lookup table..."
@z80asm -i main.asm -o rom.bin -L 2>&1 | grep "Sys_" > abi-generated.asm
@echo "PAT80 Rom size:"
@du -h rom.bin
@echo "Stretching rom to EEPROM size..."
@dd if=/dev/zero of=rom.bin bs=1 count=0 seek=8192
@echo "Writing to EEPROM..."
@minipro -w rom.bin -p "AT28C64B"