Modern cross-platform Apple IIgs emulator and tools based on KEGS
Go to file
2019-04-15 12:54:42 -04:00
assets
doc v0.14 release 2018-09-11 17:06:05 -05:00
include cleanup headers a bit 2019-01-02 19:53:34 -05:00
lib
src print current address/mx bits when entering the mini assembler. 2019-04-15 12:54:42 -04:00
.gitattributes
.gitignore
.gitlab-ci.yml fix artifact name 2018-08-22 14:53:17 -05:00
.travis.yml travis - need freetype. 2019-02-10 21:43:15 -05:00
appveyor.yml linux headless build, default the gui debugger to off 2019-03-13 20:14:04 -04:00
CMakeLists.txt __USE_W32_SOCKETS 2019-02-20 13:46:06 -05:00
COPYRIGHT.txt
LICENSE.txt
make_dist_mac.sh
make_dmg_mac.sh
README.md Update README.md 2019-03-02 14:57:15 -05:00

GS+ Pro Xtreme HD Developer Edition

My personal fork of GSplus which is a fork of GSport which is fork of KEGS. Replaces the edbugger facilities with something more suitable for my tastes.

Build instructions

OS X dependencies

brew install re2c sdl2 sdl2_image freetype

Linux dependencies

apt-get install re2c libsdl2-dev libsdl2-image-dev libfreetype6-dev libpcap0.8-dev

WIN32 dependencies

Install MSYS2 (not MSYS, not cygwin)

32-bit build:

pacman  -S re2c mingw-w64-i686-cmake mingw-w64-i686-SDL2 mingw-w64-i686-SDL2_image mingw-w64-i686-freetype

64-bit build:

pacman  -S re2c mingw-w64-x86_64-cmake mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_image mingw-w64-x86_64-freetype

Linux, OS X, build

mkdir build
cd build
cmake ..
(optionally: ccmake .. to configure stuff)
make

Windows Build

mingw SDL build

mkdir build
cd build
cmake ../ -DDRIVER=SDL2 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
make GSplus.exe

mingw GDI build

mkdir build
cd build
cmake ../ -DDRIVER=WIN32 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
make GSplus.exe