BIOS ROM for the "VCS" computer in the A.C. Wright 6502 project.
The cc65 toolchain provides the assembler and linker needed to build 6502 assembly code.
macOS (using Homebrew):
brew install cc65Linux (Debian/Ubuntu):
sudo apt-get install cc65Other platforms: See cc65 documentation
Only required if you plan to program an AT28C256 EEPROM chip:
brew install miniproBuild the ROM image:
makeThis generates:
BIOS.bin- 32KB ROM image ($8000-$FFFF)BIOS.lst- Assembly listing file for debugging
View the generated binary as hex dump:
make viewTo burn the ROM to an AT28C256 EEPROM chip using a TL866 programmer:
make eepromNote: This requires a TL866 (or compatible) programmer and the minipro software.
Remove generated files:
make clean