├── .gitattributes ├── .gitignore ├── Doxyfile ├── Makefile ├── README.md ├── T-HMI-C64.ino ├── THMIC64KB ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── org │ │ │ └── retroelec │ │ │ └── thmic64kb │ │ │ ├── BLEManager.java │ │ │ ├── BLEUtils.java │ │ │ ├── C64Keyboard.java │ │ │ ├── Config.java │ │ │ ├── DivActivity.java │ │ │ ├── KBInpActivity.java │ │ │ ├── KBJoystickActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MemoryActivity.java │ │ │ ├── MyApplication.java │ │ │ ├── NotificationObserver.java │ │ │ ├── Pinball1Activity.java │ │ │ ├── Settings.java │ │ │ ├── SettingsObserver.java │ │ │ ├── StatusActivity.java │ │ │ ├── Type2Notification.java │ │ │ ├── Type3Notification.java │ │ │ ├── Type4Notification.java │ │ │ └── Type5Notification.java │ │ ├── res │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ │ ├── arrowdown.png │ │ │ ├── arrowleft.png │ │ │ ├── arrowright.png │ │ │ ├── arrowup.png │ │ │ ├── button.png │ │ │ ├── circle.png │ │ │ ├── commodorelogo.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── keyclrhome.png │ │ │ ├── keyinstdel.png │ │ │ ├── keyrunstop.png │ │ │ ├── textborder.xml │ │ │ └── thmic64kb_background.xml │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── div.xml │ │ │ ├── kbinp.xml │ │ │ ├── kbjoystick.xml │ │ │ ├── keyboard.xml │ │ │ ├── memory.xml │ │ │ ├── pinball1.xml │ │ │ └── status.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ ├── ic_launcher_round.xml │ │ │ ├── thmic64kb.xml │ │ │ └── thmic64kb_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_round.webp │ │ │ ├── thmic64kb.png │ │ │ ├── thmic64kb_foreground.png │ │ │ └── thmic64kb_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_round.webp │ │ │ ├── thmic64kb.png │ │ │ ├── thmic64kb_foreground.png │ │ │ └── thmic64kb_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_round.webp │ │ │ ├── thmic64kb.png │ │ │ ├── thmic64kb_foreground.png │ │ │ └── thmic64kb_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_round.webp │ │ │ ├── thmic64kb.png │ │ │ ├── thmic64kb_foreground.png │ │ │ └── thmic64kb_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_round.webp │ │ │ ├── thmic64kb.png │ │ │ ├── thmic64kb_foreground.png │ │ │ └── thmic64kb_round.png │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── xml │ │ │ └── backup_descriptor.xml │ │ └── thmic64kb-playstore.png ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── settings.gradle └── thmic64kb.apk ├── doc ├── Funduino-Joystick-Shield-Connections.jpg ├── T-HMI.jpg ├── THMIC64KB.png ├── THMIC64KB_Div.png ├── THMIC64KB_Pinball.png ├── THMIC64KB_VirtJoystick.png ├── Waveshare.jpg ├── classdiagram.png ├── classdiagram.pu ├── classdiagram_001.png ├── classdiagram_002.png ├── classdiagram_003.png ├── donkey_kong.png ├── joystick.png ├── loadprg.gif └── tdisps3amoled.jpg ├── src ├── C64Emu.cpp ├── C64Emu.h ├── C64Sys.cpp ├── C64Sys.h ├── CIA.cpp ├── CIA.h ├── CPU6502.cpp ├── CPU6502.h ├── Config.h ├── ExtCmd.h ├── ExternalCmds.cpp ├── ExternalCmds.h ├── Floppy.cpp ├── Floppy.h ├── HardwareInitializationException.h ├── Hooks.cpp ├── Hooks.h ├── NotificationStruct.h ├── SID.cpp ├── SID.h ├── VIC.cpp ├── VIC.h ├── board │ ├── BoardDriver.h │ ├── BoardFactory.h │ ├── CalibrateBattery.h │ ├── Linux.h │ ├── T_DISPLAY_S3.h │ ├── T_HMI.h │ └── Waveshare.h ├── c64linux.cpp ├── display │ ├── DisplayDriver.h │ ├── DisplayFactory.h │ ├── RM67162.cpp │ ├── RM67162.h │ ├── SDLDisplay.cpp │ ├── SDLDisplay.h │ ├── ST7789V.cpp │ ├── ST7789V.h │ ├── ST7789VSerial.cpp │ ├── ST7789VSerial.h │ ├── rm67162 │ │ ├── pins_config.h │ │ ├── rm67162.cpp │ │ └── rm67162.h │ └── st7789vserial │ │ ├── Display_ST7789.cpp │ │ └── Display_ST7789.h ├── fs │ ├── FileDriver.h │ ├── FileFactory.h │ ├── LinuxFile.cpp │ ├── LinuxFile.h │ ├── NoFile.h │ ├── SDMMCFile.cpp │ └── SDMMCFile.h ├── joystick │ ├── ArduinoJoystick.cpp │ ├── ArduinoJoystick.h │ ├── JoystickDriver.h │ ├── JoystickFactory.h │ ├── JoystickInitializationException.h │ └── NoJoystick.h ├── keyboard │ ├── BLEKB.cpp │ ├── BLEKB.h │ ├── Commodore.svg │ ├── HTMLCSSKB.html │ ├── KeyboardDriver.h │ ├── KeyboardFactory.h │ ├── SDLKB.cpp │ ├── SDLKB.h │ ├── SDLKeymap.cpp │ ├── SDLKeymap.h │ ├── WebKB.cpp │ ├── WebKB.h │ └── htmlcode.h ├── listactions.asm ├── listactions.h ├── loadactions.asm ├── loadactions.h ├── platform │ ├── Platform.h │ ├── PlatformESP32.h │ ├── PlatformFactory.h │ ├── PlatformLinux.h │ ├── PlatformManager.h │ └── PlatformWindows.h ├── roms │ ├── basic.h │ ├── charset.h │ └── kernal.h ├── saveactions.asm ├── saveactions.h └── sound │ ├── I2SSound.h │ ├── NoSound.h │ ├── SDLSound.h │ ├── SoundDriver.h │ └── SoundFactory.h └── thmic64.bmp /.gitattributes: -------------------------------------------------------------------------------- 1 | src/roms/* linguist-generated 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/README.md -------------------------------------------------------------------------------- /T-HMI-C64.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/T-HMI-C64.ino -------------------------------------------------------------------------------- /THMIC64KB/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/build.gradle -------------------------------------------------------------------------------- /THMIC64KB/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/proguard-rules.pro -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/BLEManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/BLEManager.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/BLEUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/BLEUtils.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/C64Keyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/C64Keyboard.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Config.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/DivActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/DivActivity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/KBInpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/KBInpActivity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/KBJoystickActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/KBJoystickActivity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/MainActivity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/MemoryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/MemoryActivity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/MyApplication.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/NotificationObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/NotificationObserver.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Pinball1Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Pinball1Activity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Settings.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/SettingsObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/SettingsObserver.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/StatusActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/StatusActivity.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type2Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type2Notification.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type3Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type3Notification.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type4Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type4Notification.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type5Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/java/org/retroelec/thmic64kb/Type5Notification.java -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/arrowdown.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/arrowleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/arrowleft.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/arrowright.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/arrowup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/arrowup.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/button.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/circle.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/commodorelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/commodorelogo.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/keyclrhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/keyclrhome.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/keyinstdel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/keyinstdel.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/keyrunstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/keyrunstop.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/textborder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/textborder.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/drawable/thmic64kb_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/drawable/thmic64kb_background.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/div.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/kbinp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/kbinp.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/kbjoystick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/kbjoystick.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/keyboard.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/memory.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/pinball1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/pinball1.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/layout/status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/layout/status.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-anydpi-v26/thmic64kb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-anydpi-v26/thmic64kb.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-anydpi-v26/thmic64kb_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-anydpi-v26/thmic64kb_round.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-hdpi/thmic64kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-hdpi/thmic64kb.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-hdpi/thmic64kb_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-hdpi/thmic64kb_foreground.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-hdpi/thmic64kb_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-hdpi/thmic64kb_round.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-mdpi/thmic64kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-mdpi/thmic64kb.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-mdpi/thmic64kb_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-mdpi/thmic64kb_foreground.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-mdpi/thmic64kb_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-mdpi/thmic64kb_round.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xhdpi/thmic64kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xhdpi/thmic64kb.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xhdpi/thmic64kb_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xhdpi/thmic64kb_foreground.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xhdpi/thmic64kb_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xhdpi/thmic64kb_round.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxhdpi/thmic64kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxhdpi/thmic64kb.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxhdpi/thmic64kb_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxhdpi/thmic64kb_foreground.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxhdpi/thmic64kb_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxhdpi/thmic64kb_round.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxxhdpi/thmic64kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxxhdpi/thmic64kb.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxxhdpi/thmic64kb_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxxhdpi/thmic64kb_foreground.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/mipmap-xxxhdpi/thmic64kb_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/mipmap-xxxhdpi/thmic64kb_round.png -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/res/xml/backup_descriptor.xml -------------------------------------------------------------------------------- /THMIC64KB/app/src/main/thmic64kb-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/app/src/main/thmic64kb-playstore.png -------------------------------------------------------------------------------- /THMIC64KB/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/build.gradle -------------------------------------------------------------------------------- /THMIC64KB/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/gradle.properties -------------------------------------------------------------------------------- /THMIC64KB/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /THMIC64KB/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /THMIC64KB/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/gradlew -------------------------------------------------------------------------------- /THMIC64KB/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/settings.gradle -------------------------------------------------------------------------------- /THMIC64KB/thmic64kb.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/THMIC64KB/thmic64kb.apk -------------------------------------------------------------------------------- /doc/Funduino-Joystick-Shield-Connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/Funduino-Joystick-Shield-Connections.jpg -------------------------------------------------------------------------------- /doc/T-HMI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/T-HMI.jpg -------------------------------------------------------------------------------- /doc/THMIC64KB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/THMIC64KB.png -------------------------------------------------------------------------------- /doc/THMIC64KB_Div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/THMIC64KB_Div.png -------------------------------------------------------------------------------- /doc/THMIC64KB_Pinball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/THMIC64KB_Pinball.png -------------------------------------------------------------------------------- /doc/THMIC64KB_VirtJoystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/THMIC64KB_VirtJoystick.png -------------------------------------------------------------------------------- /doc/Waveshare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/Waveshare.jpg -------------------------------------------------------------------------------- /doc/classdiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/classdiagram.png -------------------------------------------------------------------------------- /doc/classdiagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/classdiagram.pu -------------------------------------------------------------------------------- /doc/classdiagram_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/classdiagram_001.png -------------------------------------------------------------------------------- /doc/classdiagram_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/classdiagram_002.png -------------------------------------------------------------------------------- /doc/classdiagram_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/classdiagram_003.png -------------------------------------------------------------------------------- /doc/donkey_kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/donkey_kong.png -------------------------------------------------------------------------------- /doc/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/joystick.png -------------------------------------------------------------------------------- /doc/loadprg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/loadprg.gif -------------------------------------------------------------------------------- /doc/tdisps3amoled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/doc/tdisps3amoled.jpg -------------------------------------------------------------------------------- /src/C64Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/C64Emu.cpp -------------------------------------------------------------------------------- /src/C64Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/C64Emu.h -------------------------------------------------------------------------------- /src/C64Sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/C64Sys.cpp -------------------------------------------------------------------------------- /src/C64Sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/C64Sys.h -------------------------------------------------------------------------------- /src/CIA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/CIA.cpp -------------------------------------------------------------------------------- /src/CIA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/CIA.h -------------------------------------------------------------------------------- /src/CPU6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/CPU6502.cpp -------------------------------------------------------------------------------- /src/CPU6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/CPU6502.h -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/ExtCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/ExtCmd.h -------------------------------------------------------------------------------- /src/ExternalCmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/ExternalCmds.cpp -------------------------------------------------------------------------------- /src/ExternalCmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/ExternalCmds.h -------------------------------------------------------------------------------- /src/Floppy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/Floppy.cpp -------------------------------------------------------------------------------- /src/Floppy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/Floppy.h -------------------------------------------------------------------------------- /src/HardwareInitializationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/HardwareInitializationException.h -------------------------------------------------------------------------------- /src/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/Hooks.cpp -------------------------------------------------------------------------------- /src/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/Hooks.h -------------------------------------------------------------------------------- /src/NotificationStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/NotificationStruct.h -------------------------------------------------------------------------------- /src/SID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/SID.cpp -------------------------------------------------------------------------------- /src/SID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/SID.h -------------------------------------------------------------------------------- /src/VIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/VIC.cpp -------------------------------------------------------------------------------- /src/VIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/VIC.h -------------------------------------------------------------------------------- /src/board/BoardDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/BoardDriver.h -------------------------------------------------------------------------------- /src/board/BoardFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/BoardFactory.h -------------------------------------------------------------------------------- /src/board/CalibrateBattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/CalibrateBattery.h -------------------------------------------------------------------------------- /src/board/Linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/Linux.h -------------------------------------------------------------------------------- /src/board/T_DISPLAY_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/T_DISPLAY_S3.h -------------------------------------------------------------------------------- /src/board/T_HMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/T_HMI.h -------------------------------------------------------------------------------- /src/board/Waveshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/board/Waveshare.h -------------------------------------------------------------------------------- /src/c64linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/c64linux.cpp -------------------------------------------------------------------------------- /src/display/DisplayDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/DisplayDriver.h -------------------------------------------------------------------------------- /src/display/DisplayFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/DisplayFactory.h -------------------------------------------------------------------------------- /src/display/RM67162.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/RM67162.cpp -------------------------------------------------------------------------------- /src/display/RM67162.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/RM67162.h -------------------------------------------------------------------------------- /src/display/SDLDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/SDLDisplay.cpp -------------------------------------------------------------------------------- /src/display/SDLDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/SDLDisplay.h -------------------------------------------------------------------------------- /src/display/ST7789V.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/ST7789V.cpp -------------------------------------------------------------------------------- /src/display/ST7789V.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/ST7789V.h -------------------------------------------------------------------------------- /src/display/ST7789VSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/ST7789VSerial.cpp -------------------------------------------------------------------------------- /src/display/ST7789VSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/ST7789VSerial.h -------------------------------------------------------------------------------- /src/display/rm67162/pins_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/rm67162/pins_config.h -------------------------------------------------------------------------------- /src/display/rm67162/rm67162.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/rm67162/rm67162.cpp -------------------------------------------------------------------------------- /src/display/rm67162/rm67162.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/rm67162/rm67162.h -------------------------------------------------------------------------------- /src/display/st7789vserial/Display_ST7789.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/st7789vserial/Display_ST7789.cpp -------------------------------------------------------------------------------- /src/display/st7789vserial/Display_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/display/st7789vserial/Display_ST7789.h -------------------------------------------------------------------------------- /src/fs/FileDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/FileDriver.h -------------------------------------------------------------------------------- /src/fs/FileFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/FileFactory.h -------------------------------------------------------------------------------- /src/fs/LinuxFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/LinuxFile.cpp -------------------------------------------------------------------------------- /src/fs/LinuxFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/LinuxFile.h -------------------------------------------------------------------------------- /src/fs/NoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/NoFile.h -------------------------------------------------------------------------------- /src/fs/SDMMCFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/SDMMCFile.cpp -------------------------------------------------------------------------------- /src/fs/SDMMCFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/fs/SDMMCFile.h -------------------------------------------------------------------------------- /src/joystick/ArduinoJoystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/joystick/ArduinoJoystick.cpp -------------------------------------------------------------------------------- /src/joystick/ArduinoJoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/joystick/ArduinoJoystick.h -------------------------------------------------------------------------------- /src/joystick/JoystickDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/joystick/JoystickDriver.h -------------------------------------------------------------------------------- /src/joystick/JoystickFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/joystick/JoystickFactory.h -------------------------------------------------------------------------------- /src/joystick/JoystickInitializationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/joystick/JoystickInitializationException.h -------------------------------------------------------------------------------- /src/joystick/NoJoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/joystick/NoJoystick.h -------------------------------------------------------------------------------- /src/keyboard/BLEKB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/BLEKB.cpp -------------------------------------------------------------------------------- /src/keyboard/BLEKB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/BLEKB.h -------------------------------------------------------------------------------- /src/keyboard/Commodore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/Commodore.svg -------------------------------------------------------------------------------- /src/keyboard/HTMLCSSKB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/HTMLCSSKB.html -------------------------------------------------------------------------------- /src/keyboard/KeyboardDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/KeyboardDriver.h -------------------------------------------------------------------------------- /src/keyboard/KeyboardFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/KeyboardFactory.h -------------------------------------------------------------------------------- /src/keyboard/SDLKB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/SDLKB.cpp -------------------------------------------------------------------------------- /src/keyboard/SDLKB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/SDLKB.h -------------------------------------------------------------------------------- /src/keyboard/SDLKeymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/SDLKeymap.cpp -------------------------------------------------------------------------------- /src/keyboard/SDLKeymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/SDLKeymap.h -------------------------------------------------------------------------------- /src/keyboard/WebKB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/WebKB.cpp -------------------------------------------------------------------------------- /src/keyboard/WebKB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/WebKB.h -------------------------------------------------------------------------------- /src/keyboard/htmlcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/keyboard/htmlcode.h -------------------------------------------------------------------------------- /src/listactions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/listactions.asm -------------------------------------------------------------------------------- /src/listactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/listactions.h -------------------------------------------------------------------------------- /src/loadactions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/loadactions.asm -------------------------------------------------------------------------------- /src/loadactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/loadactions.h -------------------------------------------------------------------------------- /src/platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/platform/Platform.h -------------------------------------------------------------------------------- /src/platform/PlatformESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/platform/PlatformESP32.h -------------------------------------------------------------------------------- /src/platform/PlatformFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/platform/PlatformFactory.h -------------------------------------------------------------------------------- /src/platform/PlatformLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/platform/PlatformLinux.h -------------------------------------------------------------------------------- /src/platform/PlatformManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/platform/PlatformManager.h -------------------------------------------------------------------------------- /src/platform/PlatformWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/platform/PlatformWindows.h -------------------------------------------------------------------------------- /src/roms/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/roms/basic.h -------------------------------------------------------------------------------- /src/roms/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/roms/charset.h -------------------------------------------------------------------------------- /src/roms/kernal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/roms/kernal.h -------------------------------------------------------------------------------- /src/saveactions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/saveactions.asm -------------------------------------------------------------------------------- /src/saveactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/saveactions.h -------------------------------------------------------------------------------- /src/sound/I2SSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/sound/I2SSound.h -------------------------------------------------------------------------------- /src/sound/NoSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/sound/NoSound.h -------------------------------------------------------------------------------- /src/sound/SDLSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/sound/SDLSound.h -------------------------------------------------------------------------------- /src/sound/SoundDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/sound/SoundDriver.h -------------------------------------------------------------------------------- /src/sound/SoundFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/src/sound/SoundFactory.h -------------------------------------------------------------------------------- /thmic64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroelec/T-HMI-C64/HEAD/thmic64.bmp --------------------------------------------------------------------------------