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
Description
Pat80 Home Computer is an attempt to develop the simplest possible Zilog Z80 based computer in 2021
Languages
Assembly
67.9%
Pascal
15.5%
C++
10%
C
4.4%
Python
1.8%
Other
0.4%