Last active
May 18, 2023 12:18
-
-
Save mnaberez/1803936 to your computer and use it in GitHub Desktop.
Build and install VICE with SuperPET support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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