├── .appveyor.yml ├── .clang-format ├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── 3rdparty ├── sdl-vc │ ├── include │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h │ │ ├── SDL_config_dreamcast.h │ │ ├── SDL_config_macos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nds.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_symbian.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_image.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ ├── x64 │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL.dll │ │ ├── SDL.lib │ │ ├── SDL_image.dll │ │ ├── SDL_image.lib │ │ ├── SDLmain.lib │ │ ├── libjpeg-8.dll │ │ ├── libpng15-15.dll │ │ ├── libtiff-5.dll │ │ ├── libwebp-2.dll │ │ └── zlib1.dll │ │ └── x86 │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL.dll │ │ ├── SDL.lib │ │ ├── SDL_image.dll │ │ ├── SDL_image.lib │ │ ├── SDLmain.lib │ │ ├── libjpeg-8.dll │ │ ├── libpng15-15.dll │ │ ├── libtiff-5.dll │ │ ├── libwebp-2.dll │ │ └── zlib1.dll └── sdl-vc2015 │ ├── include │ ├── SDL.h │ ├── SDL_active.h │ ├── SDL_audio.h │ ├── SDL_byteorder.h │ ├── SDL_cdrom.h │ ├── SDL_config.h │ ├── SDL_config.h.default │ ├── SDL_config.h.in │ ├── SDL_config_dreamcast.h │ ├── SDL_config_macos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_nds.h │ ├── SDL_config_os2.h │ ├── SDL_config_symbian.h │ ├── SDL_config_win32.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_getenv.h │ ├── SDL_gfxBlitFunc.h │ ├── SDL_gfxPrimitives.h │ ├── SDL_gfxPrimitives_font.h │ ├── SDL_image.h │ ├── SDL_imageFilter.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keysym.h │ ├── SDL_loadso.h │ ├── SDL_main.h │ ├── SDL_mixer.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_platform.h │ ├── SDL_quit.h │ ├── SDL_rotozoom.h │ ├── SDL_rwops.h │ ├── SDL_stdinc.h │ ├── SDL_syswm.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ ├── close_code.h │ └── doxyfile │ └── lib │ └── x86 │ ├── SDL.dll │ ├── SDL.lib │ ├── SDL_gfx.dll │ ├── SDL_gfx.lib │ ├── SDL_image.dll │ ├── SDL_image.lib │ ├── SDL_mixer.dll │ ├── SDL_mixer.lib │ ├── SDLmain.lib │ ├── libFLAC-8.dll │ ├── libjpeg-8.dll │ ├── libmikmod-2.dll │ ├── libogg-0.dll │ ├── libpng15-15.dll │ ├── libtiff-5.dll │ ├── libvorbis-0.dll │ ├── libvorbisfile-3.dll │ ├── libwebp-2.dll │ ├── smpeg.dll │ └── zlib1.dll ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── app │ ├── disk.png │ ├── icon32x32-256.bmp │ ├── joykeyb.png │ ├── menu.png │ ├── menu2.png │ ├── mkicon.py │ └── rpgfont.png ├── cmake │ ├── CompilerSpec.cmake │ └── compspec.h.in ├── config.h.in ├── disks │ ├── 000--Empty.dsk │ ├── 000--Logo3.dsk │ ├── Apprenti.dsk │ ├── ArkanRev.dsk │ ├── Arkanoi4.dsk │ ├── Arkanoi5.dsk │ ├── Arkanoid.dsk │ ├── ArtStud.dsk │ ├── BJack1.dsk │ ├── BJack2.dsk │ ├── Back to the Future 3 (UK) (1990) (Disk 1 of 2).dsk │ ├── Back to the Future 3 (UK) (1990) (Disk 2 of 2).dsk │ ├── Bounder.dsk │ ├── Commando.dsk │ ├── Darts180.dsk │ ├── Demo6128.dsk │ ├── EliteD.dsk │ ├── Feud (UK) (1987).dsk │ ├── Ghostbus.dsk │ ├── GrBeret.dsk │ ├── Gyroscop.dsk │ ├── HarveyH.dsk │ ├── Hobbit.dsk │ ├── ImpMiss1.dsk │ ├── ImpMiss2.dsk │ ├── PingPong.dsk │ ├── Predator.dsk │ ├── Prehist2.dsk │ ├── RolanTim.dsk │ ├── SorcerPl.dsk │ ├── Spindizy.dsk │ ├── StoleMill.dsk │ ├── WerneEDA.dsk │ ├── WerneEDB.dsk │ ├── WiGamesA.dsk │ ├── WiGamesB.dsk │ ├── prehisto.dsk │ └── sorcery.dsk ├── dox │ ├── 8255.dox │ ├── 8255.html │ ├── 8255.txt │ ├── Amstrad-CPC-Mode0.eot │ ├── Amstrad-CPC-Mode0.svg │ ├── Amstrad-CPC-Mode0.ttf │ ├── Amstrad-CPC-Mode0.woff │ ├── Amstrad-CPC-Mode1.eot │ ├── Amstrad-CPC-Mode1.svg │ ├── Amstrad-CPC-Mode1.ttf │ ├── Amstrad-CPC-Mode1.woff │ ├── Amstrad-CPC-Mode2.eot │ ├── Amstrad-CPC-Mode2.svg │ ├── Amstrad-CPC-Mode2.ttf │ ├── Amstrad-CPC-Mode2.woff │ ├── amstrad.jpg │ ├── cpc6128g.jpg │ ├── cpc6128g_orig.jpg │ ├── crtc.dox │ ├── crtc.html │ ├── gatearray.dox │ ├── gatearray.html │ ├── inconsolata-bold.eot │ ├── inconsolata-bold.svg │ ├── inconsolata-bold.ttf │ ├── inconsolata-bold.woff │ ├── inconsolata-bold.woff2 │ ├── inconsolata-regular.eot │ ├── inconsolata-regular.svg │ ├── inconsolata-regular.ttf │ ├── inconsolata-regular.woff │ ├── inconsolata-regular.woff2 │ ├── mainpage.dox │ ├── ready.png │ ├── roland.css │ ├── roland_header.html │ ├── roland_header_naked.html │ └── roland_naked.css ├── doxyfile.in ├── gen_changelog.sh ├── roland.desktop ├── roland.spec.in ├── roms │ ├── amsdos.rom │ ├── cpc464.rom │ ├── cpc6128.rom │ └── cpc664.rom └── uninstall.in ├── roland-linux.cfg └── src ├── .gitignore ├── CMakeLists.txt ├── common ├── CMakeLists.txt ├── filesys │ ├── CMakeLists.txt │ ├── directory.cpp │ ├── directory.h │ ├── fileinfo.cpp │ ├── fileinfo.h │ ├── filename.cpp │ ├── filename.h │ └── windirent.h ├── prefs.cpp └── prefs.h ├── cpc ├── CMakeLists.txt ├── colours.cpp ├── colours.h ├── cpc.cpp ├── cpc.h ├── cpckeys.h ├── crtc.cpp ├── crtc.h ├── floppy │ ├── CMakeLists.txt │ ├── cmdtable.cpp │ ├── cmdtable.h │ ├── cmdtabledef.cpp │ ├── cmdtabledef.h │ ├── drive.cpp │ ├── drive.h │ ├── fdc.cpp │ ├── fdc.h │ ├── fdcconst.h │ ├── sector.cpp │ ├── sector.h │ ├── track.cpp │ └── track.h ├── gatearray.cpp ├── gatearray.h ├── keyboard.cpp ├── keyboard.h ├── memman.cpp ├── memman.h ├── ppi.cpp ├── ppi.h ├── psg.cpp ├── psg.h ├── raze │ ├── raze.asm.in │ ├── raze.h │ ├── raze.html │ ├── raze.inc │ ├── raze.reg │ └── raze.zip ├── sound.cpp ├── sound.h ├── vdu.cpp ├── vdu.h └── z80 │ ├── CMakeLists.txt │ ├── macros.h │ ├── register.h │ ├── z80.cpp │ └── z80.h ├── def.h ├── icon.h ├── opt ├── mmx_memcpy.asm.in └── mmx_memcpy.h ├── roland.cpp ├── sdltk ├── CMakeLists.txt ├── audio.cpp ├── audio.h ├── border.cpp ├── border.h ├── button.cpp ├── button.h ├── canvas.cpp ├── canvas.h ├── canvasgl.cpp ├── canvasgl.h ├── canvasstd.cpp ├── canvasstd.h ├── clock.h ├── color.cpp ├── color.h ├── events.h ├── exception.cpp ├── exception.h ├── filelist.cpp ├── filelist.h ├── filelistitem.cpp ├── filelistitem.h ├── glfunclist.h ├── glfuncs.cpp ├── glfuncs.h ├── gui.cpp ├── gui.h ├── image.cpp ├── image.h ├── imagefont.cpp ├── imagefont.h ├── keytrans.cpp ├── keytrans.h ├── label.cpp ├── label.h ├── list.cpp ├── list.h ├── listitem.cpp ├── listitem.h ├── pixel.h ├── point.h ├── rect.h ├── sdlpixel.h ├── size.h ├── video.cpp ├── video.h ├── videogl.cpp ├── videogl.h ├── videostd.cpp ├── videostd.h ├── widget.cpp └── widget.h └── types.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/.clang-format -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_active.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_audio.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_byteorder.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_cdrom.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_macos.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_nds.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_os2.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_symbian.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_config_win32.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_copying.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_endian.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_error.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_events.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_getenv.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_image.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_joystick.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_keyboard.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_keysym.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_loadso.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_main.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_mouse.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_mutex.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_name.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_opengl.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_platform.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_quit.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_rwops.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_stdinc.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_syswm.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_thread.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_timer.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_types.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_version.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/SDL_video.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/begin_code.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/include/close_code.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/LICENSE.png.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/LICENSE.tiff.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/LICENSE.webp.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/LICENSE.zlib.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/SDL.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/SDL.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/SDL_image.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/SDL_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/SDL_image.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/SDLmain.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/libjpeg-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/libjpeg-8.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/libpng15-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/libpng15-15.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/libtiff-5.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/libwebp-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/libwebp-2.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x64/zlib1.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/LICENSE.png.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/LICENSE.tiff.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/LICENSE.webp.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/LICENSE.zlib.txt -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/SDL.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/SDL.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/SDL_image.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/SDL_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/SDL_image.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/SDLmain.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/libjpeg-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/libjpeg-8.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/libpng15-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/libpng15-15.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/libtiff-5.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/libwebp-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/libwebp-2.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc/lib/x86/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc/lib/x86/zlib1.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_active.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_audio.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_byteorder.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_cdrom.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config.h.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config.h.default -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config.h.in -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_macos.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_nds.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_os2.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_symbian.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_config_win32.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_copying.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_endian.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_error.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_events.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_getenv.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_gfxBlitFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_gfxBlitFunc.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_gfxPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_gfxPrimitives.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_gfxPrimitives_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_gfxPrimitives_font.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_image.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_imageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_imageFilter.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_joystick.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_keyboard.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_keysym.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_loadso.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_main.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_mixer.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_mouse.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_mutex.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_name.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_opengl.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_platform.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_quit.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_rotozoom.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_rwops.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_stdinc.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_syswm.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_thread.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_timer.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_types.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_version.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/SDL_video.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/begin_code.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/close_code.h -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/include/doxyfile -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL_gfx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL_gfx.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL_gfx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL_gfx.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL_image.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL_image.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL_mixer.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDL_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDL_mixer.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/SDLmain.lib -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libFLAC-8.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libjpeg-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libjpeg-8.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libmikmod-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libmikmod-2.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libogg-0.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libpng15-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libpng15-15.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libtiff-5.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libvorbis-0.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libvorbisfile-3.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/libwebp-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/libwebp-2.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/smpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/smpeg.dll -------------------------------------------------------------------------------- /3rdparty/sdl-vc2015/lib/x86/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/3rdparty/sdl-vc2015/lib/x86/zlib1.dll -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/README.md -------------------------------------------------------------------------------- /assets/app/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/disk.png -------------------------------------------------------------------------------- /assets/app/icon32x32-256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/icon32x32-256.bmp -------------------------------------------------------------------------------- /assets/app/joykeyb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/joykeyb.png -------------------------------------------------------------------------------- /assets/app/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/menu.png -------------------------------------------------------------------------------- /assets/app/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/menu2.png -------------------------------------------------------------------------------- /assets/app/mkicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/mkicon.py -------------------------------------------------------------------------------- /assets/app/rpgfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/app/rpgfont.png -------------------------------------------------------------------------------- /assets/cmake/CompilerSpec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/cmake/CompilerSpec.cmake -------------------------------------------------------------------------------- /assets/cmake/compspec.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/cmake/compspec.h.in -------------------------------------------------------------------------------- /assets/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/config.h.in -------------------------------------------------------------------------------- /assets/disks/000--Empty.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/000--Empty.dsk -------------------------------------------------------------------------------- /assets/disks/000--Logo3.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/000--Logo3.dsk -------------------------------------------------------------------------------- /assets/disks/Apprenti.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Apprenti.dsk -------------------------------------------------------------------------------- /assets/disks/ArkanRev.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/ArkanRev.dsk -------------------------------------------------------------------------------- /assets/disks/Arkanoi4.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Arkanoi4.dsk -------------------------------------------------------------------------------- /assets/disks/Arkanoi5.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Arkanoi5.dsk -------------------------------------------------------------------------------- /assets/disks/Arkanoid.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Arkanoid.dsk -------------------------------------------------------------------------------- /assets/disks/ArtStud.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/ArtStud.dsk -------------------------------------------------------------------------------- /assets/disks/BJack1.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/BJack1.dsk -------------------------------------------------------------------------------- /assets/disks/BJack2.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/BJack2.dsk -------------------------------------------------------------------------------- /assets/disks/Back to the Future 3 (UK) (1990) (Disk 1 of 2).dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Back to the Future 3 (UK) (1990) (Disk 1 of 2).dsk -------------------------------------------------------------------------------- /assets/disks/Back to the Future 3 (UK) (1990) (Disk 2 of 2).dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Back to the Future 3 (UK) (1990) (Disk 2 of 2).dsk -------------------------------------------------------------------------------- /assets/disks/Bounder.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Bounder.dsk -------------------------------------------------------------------------------- /assets/disks/Commando.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Commando.dsk -------------------------------------------------------------------------------- /assets/disks/Darts180.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Darts180.dsk -------------------------------------------------------------------------------- /assets/disks/Demo6128.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Demo6128.dsk -------------------------------------------------------------------------------- /assets/disks/EliteD.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/EliteD.dsk -------------------------------------------------------------------------------- /assets/disks/Feud (UK) (1987).dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Feud (UK) (1987).dsk -------------------------------------------------------------------------------- /assets/disks/Ghostbus.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Ghostbus.dsk -------------------------------------------------------------------------------- /assets/disks/GrBeret.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/GrBeret.dsk -------------------------------------------------------------------------------- /assets/disks/Gyroscop.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Gyroscop.dsk -------------------------------------------------------------------------------- /assets/disks/HarveyH.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/HarveyH.dsk -------------------------------------------------------------------------------- /assets/disks/Hobbit.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Hobbit.dsk -------------------------------------------------------------------------------- /assets/disks/ImpMiss1.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/ImpMiss1.dsk -------------------------------------------------------------------------------- /assets/disks/ImpMiss2.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/ImpMiss2.dsk -------------------------------------------------------------------------------- /assets/disks/PingPong.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/PingPong.dsk -------------------------------------------------------------------------------- /assets/disks/Predator.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Predator.dsk -------------------------------------------------------------------------------- /assets/disks/Prehist2.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Prehist2.dsk -------------------------------------------------------------------------------- /assets/disks/RolanTim.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/RolanTim.dsk -------------------------------------------------------------------------------- /assets/disks/SorcerPl.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/SorcerPl.dsk -------------------------------------------------------------------------------- /assets/disks/Spindizy.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/Spindizy.dsk -------------------------------------------------------------------------------- /assets/disks/StoleMill.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/StoleMill.dsk -------------------------------------------------------------------------------- /assets/disks/WerneEDA.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/WerneEDA.dsk -------------------------------------------------------------------------------- /assets/disks/WerneEDB.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/WerneEDB.dsk -------------------------------------------------------------------------------- /assets/disks/WiGamesA.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/WiGamesA.dsk -------------------------------------------------------------------------------- /assets/disks/WiGamesB.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/WiGamesB.dsk -------------------------------------------------------------------------------- /assets/disks/prehisto.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/prehisto.dsk -------------------------------------------------------------------------------- /assets/disks/sorcery.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/disks/sorcery.dsk -------------------------------------------------------------------------------- /assets/dox/8255.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/8255.dox -------------------------------------------------------------------------------- /assets/dox/8255.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/8255.html -------------------------------------------------------------------------------- /assets/dox/8255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/8255.txt -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode0.eot -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode0.svg -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode0.ttf -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode0.woff -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode1.eot -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode1.svg -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode1.ttf -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode1.woff -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode2.eot -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode2.svg -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode2.ttf -------------------------------------------------------------------------------- /assets/dox/Amstrad-CPC-Mode2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/Amstrad-CPC-Mode2.woff -------------------------------------------------------------------------------- /assets/dox/amstrad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/amstrad.jpg -------------------------------------------------------------------------------- /assets/dox/cpc6128g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/cpc6128g.jpg -------------------------------------------------------------------------------- /assets/dox/cpc6128g_orig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/cpc6128g_orig.jpg -------------------------------------------------------------------------------- /assets/dox/crtc.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/crtc.dox -------------------------------------------------------------------------------- /assets/dox/crtc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/crtc.html -------------------------------------------------------------------------------- /assets/dox/gatearray.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/gatearray.dox -------------------------------------------------------------------------------- /assets/dox/gatearray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/gatearray.html -------------------------------------------------------------------------------- /assets/dox/inconsolata-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-bold.eot -------------------------------------------------------------------------------- /assets/dox/inconsolata-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-bold.svg -------------------------------------------------------------------------------- /assets/dox/inconsolata-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-bold.ttf -------------------------------------------------------------------------------- /assets/dox/inconsolata-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-bold.woff -------------------------------------------------------------------------------- /assets/dox/inconsolata-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-bold.woff2 -------------------------------------------------------------------------------- /assets/dox/inconsolata-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-regular.eot -------------------------------------------------------------------------------- /assets/dox/inconsolata-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-regular.svg -------------------------------------------------------------------------------- /assets/dox/inconsolata-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-regular.ttf -------------------------------------------------------------------------------- /assets/dox/inconsolata-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-regular.woff -------------------------------------------------------------------------------- /assets/dox/inconsolata-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/inconsolata-regular.woff2 -------------------------------------------------------------------------------- /assets/dox/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/mainpage.dox -------------------------------------------------------------------------------- /assets/dox/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/ready.png -------------------------------------------------------------------------------- /assets/dox/roland.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/roland.css -------------------------------------------------------------------------------- /assets/dox/roland_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/roland_header.html -------------------------------------------------------------------------------- /assets/dox/roland_header_naked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/roland_header_naked.html -------------------------------------------------------------------------------- /assets/dox/roland_naked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/dox/roland_naked.css -------------------------------------------------------------------------------- /assets/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/doxyfile.in -------------------------------------------------------------------------------- /assets/gen_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/gen_changelog.sh -------------------------------------------------------------------------------- /assets/roland.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/roland.desktop -------------------------------------------------------------------------------- /assets/roland.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/roland.spec.in -------------------------------------------------------------------------------- /assets/roms/amsdos.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/roms/amsdos.rom -------------------------------------------------------------------------------- /assets/roms/cpc464.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/roms/cpc464.rom -------------------------------------------------------------------------------- /assets/roms/cpc6128.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/roms/cpc6128.rom -------------------------------------------------------------------------------- /assets/roms/cpc664.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/roms/cpc664.rom -------------------------------------------------------------------------------- /assets/uninstall.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/assets/uninstall.in -------------------------------------------------------------------------------- /roland-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/roland-linux.cfg -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /compspec.h 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/filesys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/filesys/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/directory.cpp -------------------------------------------------------------------------------- /src/common/filesys/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/directory.h -------------------------------------------------------------------------------- /src/common/filesys/fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/fileinfo.cpp -------------------------------------------------------------------------------- /src/common/filesys/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/fileinfo.h -------------------------------------------------------------------------------- /src/common/filesys/filename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/filename.cpp -------------------------------------------------------------------------------- /src/common/filesys/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/filename.h -------------------------------------------------------------------------------- /src/common/filesys/windirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/filesys/windirent.h -------------------------------------------------------------------------------- /src/common/prefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/prefs.cpp -------------------------------------------------------------------------------- /src/common/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/common/prefs.h -------------------------------------------------------------------------------- /src/cpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/CMakeLists.txt -------------------------------------------------------------------------------- /src/cpc/colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/colours.cpp -------------------------------------------------------------------------------- /src/cpc/colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/colours.h -------------------------------------------------------------------------------- /src/cpc/cpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/cpc.cpp -------------------------------------------------------------------------------- /src/cpc/cpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/cpc.h -------------------------------------------------------------------------------- /src/cpc/cpckeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/cpckeys.h -------------------------------------------------------------------------------- /src/cpc/crtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/crtc.cpp -------------------------------------------------------------------------------- /src/cpc/crtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/crtc.h -------------------------------------------------------------------------------- /src/cpc/floppy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/CMakeLists.txt -------------------------------------------------------------------------------- /src/cpc/floppy/cmdtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/cmdtable.cpp -------------------------------------------------------------------------------- /src/cpc/floppy/cmdtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/cmdtable.h -------------------------------------------------------------------------------- /src/cpc/floppy/cmdtabledef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/cmdtabledef.cpp -------------------------------------------------------------------------------- /src/cpc/floppy/cmdtabledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/cmdtabledef.h -------------------------------------------------------------------------------- /src/cpc/floppy/drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/drive.cpp -------------------------------------------------------------------------------- /src/cpc/floppy/drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/drive.h -------------------------------------------------------------------------------- /src/cpc/floppy/fdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/fdc.cpp -------------------------------------------------------------------------------- /src/cpc/floppy/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/fdc.h -------------------------------------------------------------------------------- /src/cpc/floppy/fdcconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/fdcconst.h -------------------------------------------------------------------------------- /src/cpc/floppy/sector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/sector.cpp -------------------------------------------------------------------------------- /src/cpc/floppy/sector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/sector.h -------------------------------------------------------------------------------- /src/cpc/floppy/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/track.cpp -------------------------------------------------------------------------------- /src/cpc/floppy/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/floppy/track.h -------------------------------------------------------------------------------- /src/cpc/gatearray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/gatearray.cpp -------------------------------------------------------------------------------- /src/cpc/gatearray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/gatearray.h -------------------------------------------------------------------------------- /src/cpc/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/keyboard.cpp -------------------------------------------------------------------------------- /src/cpc/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/keyboard.h -------------------------------------------------------------------------------- /src/cpc/memman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/memman.cpp -------------------------------------------------------------------------------- /src/cpc/memman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/memman.h -------------------------------------------------------------------------------- /src/cpc/ppi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/ppi.cpp -------------------------------------------------------------------------------- /src/cpc/ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/ppi.h -------------------------------------------------------------------------------- /src/cpc/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/psg.cpp -------------------------------------------------------------------------------- /src/cpc/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/psg.h -------------------------------------------------------------------------------- /src/cpc/raze/raze.asm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/raze/raze.asm.in -------------------------------------------------------------------------------- /src/cpc/raze/raze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/raze/raze.h -------------------------------------------------------------------------------- /src/cpc/raze/raze.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/raze/raze.html -------------------------------------------------------------------------------- /src/cpc/raze/raze.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/raze/raze.inc -------------------------------------------------------------------------------- /src/cpc/raze/raze.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/raze/raze.reg -------------------------------------------------------------------------------- /src/cpc/raze/raze.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/raze/raze.zip -------------------------------------------------------------------------------- /src/cpc/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/sound.cpp -------------------------------------------------------------------------------- /src/cpc/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/sound.h -------------------------------------------------------------------------------- /src/cpc/vdu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/vdu.cpp -------------------------------------------------------------------------------- /src/cpc/vdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/vdu.h -------------------------------------------------------------------------------- /src/cpc/z80/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_library(z80 STATIC z80.cpp) 3 | -------------------------------------------------------------------------------- /src/cpc/z80/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/z80/macros.h -------------------------------------------------------------------------------- /src/cpc/z80/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/z80/register.h -------------------------------------------------------------------------------- /src/cpc/z80/z80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/z80/z80.cpp -------------------------------------------------------------------------------- /src/cpc/z80/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/cpc/z80/z80.h -------------------------------------------------------------------------------- /src/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/def.h -------------------------------------------------------------------------------- /src/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/icon.h -------------------------------------------------------------------------------- /src/opt/mmx_memcpy.asm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/opt/mmx_memcpy.asm.in -------------------------------------------------------------------------------- /src/opt/mmx_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/opt/mmx_memcpy.h -------------------------------------------------------------------------------- /src/roland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/roland.cpp -------------------------------------------------------------------------------- /src/sdltk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/CMakeLists.txt -------------------------------------------------------------------------------- /src/sdltk/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/audio.cpp -------------------------------------------------------------------------------- /src/sdltk/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/audio.h -------------------------------------------------------------------------------- /src/sdltk/border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/border.cpp -------------------------------------------------------------------------------- /src/sdltk/border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/border.h -------------------------------------------------------------------------------- /src/sdltk/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/button.cpp -------------------------------------------------------------------------------- /src/sdltk/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/button.h -------------------------------------------------------------------------------- /src/sdltk/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/canvas.cpp -------------------------------------------------------------------------------- /src/sdltk/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/canvas.h -------------------------------------------------------------------------------- /src/sdltk/canvasgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/canvasgl.cpp -------------------------------------------------------------------------------- /src/sdltk/canvasgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/canvasgl.h -------------------------------------------------------------------------------- /src/sdltk/canvasstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/canvasstd.cpp -------------------------------------------------------------------------------- /src/sdltk/canvasstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/canvasstd.h -------------------------------------------------------------------------------- /src/sdltk/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/clock.h -------------------------------------------------------------------------------- /src/sdltk/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/color.cpp -------------------------------------------------------------------------------- /src/sdltk/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/color.h -------------------------------------------------------------------------------- /src/sdltk/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/events.h -------------------------------------------------------------------------------- /src/sdltk/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/exception.cpp -------------------------------------------------------------------------------- /src/sdltk/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/exception.h -------------------------------------------------------------------------------- /src/sdltk/filelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/filelist.cpp -------------------------------------------------------------------------------- /src/sdltk/filelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/filelist.h -------------------------------------------------------------------------------- /src/sdltk/filelistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/filelistitem.cpp -------------------------------------------------------------------------------- /src/sdltk/filelistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/filelistitem.h -------------------------------------------------------------------------------- /src/sdltk/glfunclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/glfunclist.h -------------------------------------------------------------------------------- /src/sdltk/glfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/glfuncs.cpp -------------------------------------------------------------------------------- /src/sdltk/glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/glfuncs.h -------------------------------------------------------------------------------- /src/sdltk/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/gui.cpp -------------------------------------------------------------------------------- /src/sdltk/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/gui.h -------------------------------------------------------------------------------- /src/sdltk/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/image.cpp -------------------------------------------------------------------------------- /src/sdltk/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/image.h -------------------------------------------------------------------------------- /src/sdltk/imagefont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/imagefont.cpp -------------------------------------------------------------------------------- /src/sdltk/imagefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/imagefont.h -------------------------------------------------------------------------------- /src/sdltk/keytrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/keytrans.cpp -------------------------------------------------------------------------------- /src/sdltk/keytrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/keytrans.h -------------------------------------------------------------------------------- /src/sdltk/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/label.cpp -------------------------------------------------------------------------------- /src/sdltk/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/label.h -------------------------------------------------------------------------------- /src/sdltk/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/list.cpp -------------------------------------------------------------------------------- /src/sdltk/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/list.h -------------------------------------------------------------------------------- /src/sdltk/listitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/listitem.cpp -------------------------------------------------------------------------------- /src/sdltk/listitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/listitem.h -------------------------------------------------------------------------------- /src/sdltk/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/pixel.h -------------------------------------------------------------------------------- /src/sdltk/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/point.h -------------------------------------------------------------------------------- /src/sdltk/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/rect.h -------------------------------------------------------------------------------- /src/sdltk/sdlpixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/sdlpixel.h -------------------------------------------------------------------------------- /src/sdltk/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/size.h -------------------------------------------------------------------------------- /src/sdltk/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/video.cpp -------------------------------------------------------------------------------- /src/sdltk/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/video.h -------------------------------------------------------------------------------- /src/sdltk/videogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/videogl.cpp -------------------------------------------------------------------------------- /src/sdltk/videogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/videogl.h -------------------------------------------------------------------------------- /src/sdltk/videostd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/videostd.cpp -------------------------------------------------------------------------------- /src/sdltk/videostd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/videostd.h -------------------------------------------------------------------------------- /src/sdltk/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/widget.cpp -------------------------------------------------------------------------------- /src/sdltk/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/sdltk/widget.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klausfred/roland/HEAD/src/types.h --------------------------------------------------------------------------------