├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── .gitmodules ├── CART ├── AmstradPlus.f4.cpr ├── Burnin Rubber (UK) (1990) [Original] [CARTOUCHE].cpr └── crtc3_projo.cpr ├── Makefile ├── README.md ├── Rules.mk ├── config ├── gamecontrollerdb.txt ├── res ├── 101_keyboard ├── Credits.txt ├── PressStart2P.bmp ├── PressStart2P.c ├── PressStart2P.ttf ├── button_1.h ├── button_1.png ├── coolspot.cpp ├── coolspot.h ├── coolspot_alpha.png ├── lemblue.png ├── lemblue2.bmp ├── lemblue2.png ├── lemblue3.jpg └── lemblue3.png ├── src ├── Cartridge.h ├── ConfigurationManager.cpp ├── ConfigurationManager.h ├── DisplayPi.cpp ├── DisplayPi.h ├── KeyboardPi.cpp ├── KeyboardPi.h ├── ScreenMenu.cpp ├── ScreenMenu.h ├── SoundPi.cpp ├── SoundPi.h ├── SugarPiSetup.cpp ├── SugarPiSetup.h ├── Windows.cpp ├── Windows.h ├── emulation.cpp ├── emulation.h ├── kernel.cpp ├── kernel.h ├── log.cpp ├── log.h └── main.cpp └── sugarpi-action ├── Dockerfile ├── action.yml └── entrypoint_docker.sh /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/.gitmodules -------------------------------------------------------------------------------- /CART/AmstradPlus.f4.cpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/CART/AmstradPlus.f4.cpr -------------------------------------------------------------------------------- /CART/Burnin Rubber (UK) (1990) [Original] [CARTOUCHE].cpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/CART/Burnin Rubber (UK) (1990) [Original] [CARTOUCHE].cpr -------------------------------------------------------------------------------- /CART/crtc3_projo.cpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/CART/crtc3_projo.cpr -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/README.md -------------------------------------------------------------------------------- /Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/Rules.mk -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- 1 | [SETUP] 2 | sync=frame 3 | cart=SD:/CART/crtc3_projo.cpr 4 | -------------------------------------------------------------------------------- /gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/gamecontrollerdb.txt -------------------------------------------------------------------------------- /res/101_keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/101_keyboard -------------------------------------------------------------------------------- /res/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/Credits.txt -------------------------------------------------------------------------------- /res/PressStart2P.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/PressStart2P.bmp -------------------------------------------------------------------------------- /res/PressStart2P.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/PressStart2P.c -------------------------------------------------------------------------------- /res/PressStart2P.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/PressStart2P.ttf -------------------------------------------------------------------------------- /res/button_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/button_1.h -------------------------------------------------------------------------------- /res/button_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/button_1.png -------------------------------------------------------------------------------- /res/coolspot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/coolspot.cpp -------------------------------------------------------------------------------- /res/coolspot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/coolspot.h -------------------------------------------------------------------------------- /res/coolspot_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/coolspot_alpha.png -------------------------------------------------------------------------------- /res/lemblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/lemblue.png -------------------------------------------------------------------------------- /res/lemblue2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/lemblue2.bmp -------------------------------------------------------------------------------- /res/lemblue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/lemblue2.png -------------------------------------------------------------------------------- /res/lemblue3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/lemblue3.jpg -------------------------------------------------------------------------------- /res/lemblue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/res/lemblue3.png -------------------------------------------------------------------------------- /src/Cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/Cartridge.h -------------------------------------------------------------------------------- /src/ConfigurationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/ConfigurationManager.cpp -------------------------------------------------------------------------------- /src/ConfigurationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/ConfigurationManager.h -------------------------------------------------------------------------------- /src/DisplayPi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/DisplayPi.cpp -------------------------------------------------------------------------------- /src/DisplayPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/DisplayPi.h -------------------------------------------------------------------------------- /src/KeyboardPi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/KeyboardPi.cpp -------------------------------------------------------------------------------- /src/KeyboardPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/KeyboardPi.h -------------------------------------------------------------------------------- /src/ScreenMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/ScreenMenu.cpp -------------------------------------------------------------------------------- /src/ScreenMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/ScreenMenu.h -------------------------------------------------------------------------------- /src/SoundPi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/SoundPi.cpp -------------------------------------------------------------------------------- /src/SoundPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/SoundPi.h -------------------------------------------------------------------------------- /src/SugarPiSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/SugarPiSetup.cpp -------------------------------------------------------------------------------- /src/SugarPiSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/SugarPiSetup.h -------------------------------------------------------------------------------- /src/Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/Windows.cpp -------------------------------------------------------------------------------- /src/Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/Windows.h -------------------------------------------------------------------------------- /src/emulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/emulation.cpp -------------------------------------------------------------------------------- /src/emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/emulation.h -------------------------------------------------------------------------------- /src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/kernel.cpp -------------------------------------------------------------------------------- /src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/kernel.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/src/main.cpp -------------------------------------------------------------------------------- /sugarpi-action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/sugarpi-action/Dockerfile -------------------------------------------------------------------------------- /sugarpi-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/sugarpi-action/action.yml -------------------------------------------------------------------------------- /sugarpi-action/entrypoint_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tom1975/SugarPi/HEAD/sugarpi-action/entrypoint_docker.sh --------------------------------------------------------------------------------