From 20abf66411bbdeaebce08d719da9a3e246a53ebc Mon Sep 17 00:00:00 2001 From: "Daniele Verducci (ZenPenguin)" Date: Tue, 27 Oct 2020 08:56:45 +0100 Subject: [PATCH] readme --- README.md | 18 ++++++++++++++++++ assembly/README.txt | 8 -------- 2 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 README.md delete mode 100644 assembly/README.txt 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"