Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.75 KB

File metadata and controls

42 lines (33 loc) · 1.75 KB

Installing everything needed for Z80-Retro! development

The following should work on most Linux systems. You might have to change the apt commands to use your system's package manager if you are not using a Debian style system.

The following commands have been verified on a Raspberry PI configured as described here: https://github.com/johnwinans/raspberry-pi-install

The make burn command requires an SD card has been partioned and installed at /dev/sdb1. (Different SD card adapters might appear with a different name. Alter SD_DEV in the script accordingly.) The process of partioning an SD for this purpose on a Raspberry PI is discussed here: https://github.com/Z80-Retro/2063-Z80-cpm/blob/main/README-SD.md

sudo apt install build-essential libi2c-dev z80asm cpmtools
#sudo apt install kicad                # not needed on a headless system
sudo apt install minicom

GIT_REPOS=http://github.com/Z80-Retro  # Use this for anonymous downloading (if you don't have a github account)
#GIT_REPOS=git@github.com:Z80-Retro    # Uncomment & change this if you use ssh and/or have your own forks

mkdir ~/retro
cd ~/retro
git clone --recurse-submodules $GIT_REPOS/2063-Z80-cpm.git
git clone $GIT_REPOS/2065-Z80-programmer.git
git clone $GIT_REPOS/example-filesystem.git
git clone $GIT_REPOS/pcb-standoffs
git clone $GIT_REPOS/2068-Z80-TMS9118

cd ~/retro/2065-Z80-programmer/pi
make world

cd ~/retro/2063-Z80-cpm
cat - > Make.local <<EOF
SD_HOSTNAME=retro
SD_DEV=/dev/sdb1
EOF
make
cd boot
~/retro/2065-Z80-programmer/pi/flash < firmware.bin  # only works on a PI connected to the Retro! flash programmer board
cd ../filesystem
make burn                                            # only works if a partioned SD card is inserted in the system
minicom -D /dev/ttyUSB0