Skip to content

Instantly share code, notes, and snippets.

@mnaberez
Last active May 18, 2023 12:18
Show Gist options
  • Select an option

  • Save mnaberez/1803936 to your computer and use it in GitHub Desktop.

Select an option

Save mnaberez/1803936 to your computer and use it in GitHub Desktop.
Build and install VICE with SuperPET support
#!/bin/bash
#
# Build and install the VICE emulator from source
# and then start the SuperPET 6809 mode emulation.
#
# Tested on Ubuntu 10.04 Desktop (x86) but likely
# works on other Debian-based systems.
set -x
set -e
set -o errexit
# Install VICE dependencies
sudo apt-get update
sudo apt-get install -y build-essential subversion
sudo apt-get install -y autoconf flex bison texinfo
sudo apt-get install -y libreadline-dev xorg-dev
# Checkout VICE with SuperPET support from SVN.
cd ~/
svn co https://svn.code.sf.net/p/vice-emu/code/trunk vice-trunk
# Build and install VICE
cd ~/vice-trunk/vice
./autogen.sh
./configure
make
sudo make install
# Start
xpet +sound -truedrive -superpet -cpu6809 -model SuperPET
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment