Skip to content

Instantly share code, notes, and snippets.

@lloc
Created December 10, 2017 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lloc/f515c79d7d8a523ecd88069b6193a601 to your computer and use it in GitHub Desktop.
Save lloc/f515c79d7d8a523ecd88069b6193a601 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
cd /usr/lib/vice
mkdir temp
cd temp
wget http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-2.4.tar.gz
tar vzxf vice-2.4.tar.gz
# Copy the C64-specific system ROMs
cd /usr/lib/vice/temp/vice-2.4/data/C64/
cp basic chargen kernal /usr/lib/vice/C64/
# Copy the common drive ROMs
cd /usr/lib/vice/temp/vice-2.4/data/DRIVES/
cp d1541II d1571cr dos* /usr/lib/vice/DRIVES/
# Copy the common printer ROMs
cd /usr/lib/vice/temp/vice-2.4/data/PRINTER/
cp cbm1526 mps801 mps803 nl10-cbm /usr/lib/vice/PRINTER/
cd /usr/lib/vice/
sudo rm -rf temp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment