diff --git a/README.md b/README.md new file mode 100644 index 0000000..6ea9ad5 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Software utilizzato +Compilatore assembly: z80asm (da repo debian) +Compilatore c: sdcc (da repo debian) +Eeprom flash: minipro (da https://gitlab.com/DavidGriffith/minipro/) + +# Assembly +## Compilare assembly: +`z80asm -i hd44780_lcd_test_procedure.asm -o rom.bin` +## Portare binario alla dimensione dell eeprom: +`dd if=/dev/zero of=rom.bin bs=1 count=0 seek=8192` +## Scrivere su EEPROM: +`minipro -w rom.bin -p "AT28C64B"` +## Leggere EEPROM: +`minipro -r rom_read.bin -p "AT28C64B"` + +# C +## Compilare c: +`sdcc -mz80 test.c` diff --git a/assembly/README.txt b/assembly/README.txt deleted file mode 100644 index 1750da4..0000000 --- a/assembly/README.txt +++ /dev/null @@ -1,8 +0,0 @@ -Compilare assembly: - z80asm -i hd44780_lcd_test_procedure.asm -o rom.bin -Portare binario alla dimensione dell eeprom: - dd if=/dev/zero of=rom.bin bs=1 count=0 seek=8192 -Scrivere su EEPROM: - minipro -w rom.bin -p "AT28C64B" -Leggere EEPROM: - minipro -r rom_read.bin -p "AT28C64B"