├── .clang-format ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── .keep ├── boot.cfg ├── persist │ └── persist.txt ├── rom │ ├── 128K │ │ ├── PLUS2A │ │ │ ├── 0.rom │ │ │ └── 1.rom │ │ └── SINCLAIR │ │ │ ├── 0.rom │ │ │ └── 1.rom │ └── 48K │ │ ├── DIAG │ │ └── 0.rom │ │ ├── DIAG2 │ │ └── 0.rom │ │ ├── SE │ │ └── 0.rom │ │ └── SINCLAIR │ │ └── 0.rom ├── sna │ ├── ManicMiner.txt │ ├── Snake.sna │ ├── Snake.txt │ ├── Tetris.sna │ ├── Tetris.txt │ ├── diag.sna │ ├── fantasy.sna │ ├── fantasy.txt │ ├── sppong.sna │ └── sppong.txt └── tap │ └── vccc2022.tap ├── docs ├── esp32-pinout.jpg ├── img │ ├── R5G5B5.jpg │ ├── dacr2r.jpg │ ├── emu-proto.jpg │ ├── esp32-composite.jpg │ ├── esp32-wroom.jpg │ ├── espectrumsnaps.jpg │ ├── espkbcables.jpg │ ├── espkbfinished.jpg │ ├── espusb.jpg │ ├── levelconv.jpg │ ├── manicminer.jpg │ ├── mmnokb.jpg │ ├── periboard.jpg │ ├── periempty.jpg │ ├── speckb.jpg │ ├── ttgo.jpg │ ├── ttgocases.jpg │ ├── video202008.jpg │ ├── video202010.jpg │ └── wiimote.jpg ├── my-esp32-history-en │ └── readme.md ├── my-esp32-history-es │ └── readme.md └── wiimote-key-codes.jpg ├── include ├── AySound.h ├── CPU.h ├── Config.h ├── ESPectrum.h ├── FileSNA.h ├── FileUtils.h ├── FileZ80.h ├── Mem.h ├── PS2Kbd.h ├── Ports.h ├── Tape.h ├── Wiimote2Keys.h ├── Z80_JLS │ ├── z80.h │ └── z80operations.h ├── hardconfig.h ├── hardpins.h ├── messages.h ├── osd.h ├── pwm_audio.h ├── sort.h └── vga_6bit.h ├── lib └── FabGL │ └── src │ ├── devdrivers │ ├── soundgen.cpp │ └── soundgen.h │ ├── fabgl.h │ └── fabutils.h ├── platformio.ini └── src ├── AySound.cpp ├── CPU.cpp ├── Config.cpp ├── ESP32Lib ├── Audio │ ├── AudioOutput.h │ └── AudioSystem.h ├── Composite │ ├── Composite.cpp │ ├── Composite.h │ ├── CompositeL8.h │ ├── CompositePAL8.h │ ├── ModeComposite.h │ └── PinConfigComposite.h ├── Controller │ └── GameControllers.h ├── ESP32Lib.h ├── GfxWrapper.h ├── Graphics │ ├── Animation.h │ ├── Engine3D.h │ ├── Entity.h │ ├── Font.h │ ├── Graphics.h │ ├── GraphicsL8CompositeSwapped.h │ ├── GraphicsPAL8Swapped.h │ ├── GraphicsPALColor.h │ ├── GraphicsR1G1B1A1.h │ ├── GraphicsR1G1B1A1X2S2Swapped.h │ ├── GraphicsR2G2B2A2.h │ ├── GraphicsR2G2B2S2Swapped.h │ ├── GraphicsR5G5B4A2.h │ ├── GraphicsR5G5B4S2Swapped.h │ ├── Image.h │ ├── ImageDrawer.h │ ├── Mesh.h │ ├── RGB2YUV.h │ ├── Sprites.h │ └── TriangleTree.h ├── I2S │ ├── DMABufferDescriptor.h │ ├── I2S.cpp │ └── I2S.h ├── LED │ ├── LUT.h │ ├── ParallelLED.cpp │ ├── ParallelLED.h │ ├── ParallelLEDGraphics.cpp │ ├── ParallelLEDGraphics.h │ ├── SerialLED.cpp │ └── SerialLED.h ├── Math │ └── Matrix.h ├── Ressources │ ├── CodePage437_8x14.h │ ├── CodePage437_8x16.h │ ├── CodePage437_8x19.h │ ├── CodePage437_8x8.h │ ├── CodePage437_9x16.h │ ├── Font6x8.h │ └── Font8x8.h ├── Tools │ └── Log.h └── VGA │ ├── Mode.h │ ├── PinConfig.h │ ├── VGA.cpp │ ├── VGA.h │ ├── VGA14Bit.h │ ├── VGA14BitI.cpp │ ├── VGA14BitI.h │ ├── VGA3Bit.h │ ├── VGA3BitI.cpp │ ├── VGA3BitI.h │ ├── VGA6Bit.h │ ├── VGA6BitI.cpp │ └── VGA6BitI.h ├── ESP32Wiimote ├── .gitignore ├── ESP32Wiimote.cpp ├── ESP32Wiimote.h ├── LICENSE.md ├── README.md ├── TinyWiimote.cpp └── TinyWiimote.h ├── ESPectrum.cpp ├── FileSNA.cpp ├── FileUtils.cpp ├── FileZ80.cpp ├── Font.cpp ├── Mem.cpp ├── OSDMain.cpp ├── OSDMenu.cpp ├── PS2Boot ├── PS2KeyAdvanced.cpp ├── PS2KeyAdvanced.h ├── PS2KeyCode.h └── PS2KeyTable.h ├── PS2Kbd.cpp ├── Ports.cpp ├── Tape.cpp ├── Wiimote2Keys.cpp ├── Z80_JLS.cpp ├── ZX-ESPectrum.ino ├── pwm_audio.c ├── reg_struct ├── esp32_timer_group_struct.h ├── esp32c3_timer_group_struct.h ├── esp32s2_timer_group_struct.h └── esp32s3_timer_group_struct.h └── vga_6bit.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/README.md -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/boot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/boot.cfg -------------------------------------------------------------------------------- /data/persist/persist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/rom/128K/PLUS2A/0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/128K/PLUS2A/0.rom -------------------------------------------------------------------------------- /data/rom/128K/PLUS2A/1.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/128K/PLUS2A/1.rom -------------------------------------------------------------------------------- /data/rom/128K/SINCLAIR/0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/128K/SINCLAIR/0.rom -------------------------------------------------------------------------------- /data/rom/128K/SINCLAIR/1.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/128K/SINCLAIR/1.rom -------------------------------------------------------------------------------- /data/rom/48K/DIAG/0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/48K/DIAG/0.rom -------------------------------------------------------------------------------- /data/rom/48K/DIAG2/0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/48K/DIAG2/0.rom -------------------------------------------------------------------------------- /data/rom/48K/SE/0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/48K/SE/0.rom -------------------------------------------------------------------------------- /data/rom/48K/SINCLAIR/0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/rom/48K/SINCLAIR/0.rom -------------------------------------------------------------------------------- /data/sna/ManicMiner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/ManicMiner.txt -------------------------------------------------------------------------------- /data/sna/Snake.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/Snake.sna -------------------------------------------------------------------------------- /data/sna/Snake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/Snake.txt -------------------------------------------------------------------------------- /data/sna/Tetris.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/Tetris.sna -------------------------------------------------------------------------------- /data/sna/Tetris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/Tetris.txt -------------------------------------------------------------------------------- /data/sna/diag.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/diag.sna -------------------------------------------------------------------------------- /data/sna/fantasy.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/fantasy.sna -------------------------------------------------------------------------------- /data/sna/fantasy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/fantasy.txt -------------------------------------------------------------------------------- /data/sna/sppong.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/sppong.sna -------------------------------------------------------------------------------- /data/sna/sppong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/sna/sppong.txt -------------------------------------------------------------------------------- /data/tap/vccc2022.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/data/tap/vccc2022.tap -------------------------------------------------------------------------------- /docs/esp32-pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/esp32-pinout.jpg -------------------------------------------------------------------------------- /docs/img/R5G5B5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/R5G5B5.jpg -------------------------------------------------------------------------------- /docs/img/dacr2r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/dacr2r.jpg -------------------------------------------------------------------------------- /docs/img/emu-proto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/emu-proto.jpg -------------------------------------------------------------------------------- /docs/img/esp32-composite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/esp32-composite.jpg -------------------------------------------------------------------------------- /docs/img/esp32-wroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/esp32-wroom.jpg -------------------------------------------------------------------------------- /docs/img/espectrumsnaps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/espectrumsnaps.jpg -------------------------------------------------------------------------------- /docs/img/espkbcables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/espkbcables.jpg -------------------------------------------------------------------------------- /docs/img/espkbfinished.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/espkbfinished.jpg -------------------------------------------------------------------------------- /docs/img/espusb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/espusb.jpg -------------------------------------------------------------------------------- /docs/img/levelconv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/levelconv.jpg -------------------------------------------------------------------------------- /docs/img/manicminer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/manicminer.jpg -------------------------------------------------------------------------------- /docs/img/mmnokb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/mmnokb.jpg -------------------------------------------------------------------------------- /docs/img/periboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/periboard.jpg -------------------------------------------------------------------------------- /docs/img/periempty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/periempty.jpg -------------------------------------------------------------------------------- /docs/img/speckb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/speckb.jpg -------------------------------------------------------------------------------- /docs/img/ttgo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/ttgo.jpg -------------------------------------------------------------------------------- /docs/img/ttgocases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/ttgocases.jpg -------------------------------------------------------------------------------- /docs/img/video202008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/video202008.jpg -------------------------------------------------------------------------------- /docs/img/video202010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/video202010.jpg -------------------------------------------------------------------------------- /docs/img/wiimote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/img/wiimote.jpg -------------------------------------------------------------------------------- /docs/my-esp32-history-en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/my-esp32-history-en/readme.md -------------------------------------------------------------------------------- /docs/my-esp32-history-es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/my-esp32-history-es/readme.md -------------------------------------------------------------------------------- /docs/wiimote-key-codes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/docs/wiimote-key-codes.jpg -------------------------------------------------------------------------------- /include/AySound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/AySound.h -------------------------------------------------------------------------------- /include/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/CPU.h -------------------------------------------------------------------------------- /include/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Config.h -------------------------------------------------------------------------------- /include/ESPectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/ESPectrum.h -------------------------------------------------------------------------------- /include/FileSNA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/FileSNA.h -------------------------------------------------------------------------------- /include/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/FileUtils.h -------------------------------------------------------------------------------- /include/FileZ80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/FileZ80.h -------------------------------------------------------------------------------- /include/Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Mem.h -------------------------------------------------------------------------------- /include/PS2Kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/PS2Kbd.h -------------------------------------------------------------------------------- /include/Ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Ports.h -------------------------------------------------------------------------------- /include/Tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Tape.h -------------------------------------------------------------------------------- /include/Wiimote2Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Wiimote2Keys.h -------------------------------------------------------------------------------- /include/Z80_JLS/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Z80_JLS/z80.h -------------------------------------------------------------------------------- /include/Z80_JLS/z80operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/Z80_JLS/z80operations.h -------------------------------------------------------------------------------- /include/hardconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/hardconfig.h -------------------------------------------------------------------------------- /include/hardpins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/hardpins.h -------------------------------------------------------------------------------- /include/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/messages.h -------------------------------------------------------------------------------- /include/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/osd.h -------------------------------------------------------------------------------- /include/pwm_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/pwm_audio.h -------------------------------------------------------------------------------- /include/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/sort.h -------------------------------------------------------------------------------- /include/vga_6bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/include/vga_6bit.h -------------------------------------------------------------------------------- /lib/FabGL/src/devdrivers/soundgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/lib/FabGL/src/devdrivers/soundgen.cpp -------------------------------------------------------------------------------- /lib/FabGL/src/devdrivers/soundgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/lib/FabGL/src/devdrivers/soundgen.h -------------------------------------------------------------------------------- /lib/FabGL/src/fabgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/lib/FabGL/src/fabgl.h -------------------------------------------------------------------------------- /lib/FabGL/src/fabutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/lib/FabGL/src/fabutils.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/AySound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/AySound.cpp -------------------------------------------------------------------------------- /src/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/CPU.cpp -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/Audio/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Audio/AudioOutput.h -------------------------------------------------------------------------------- /src/ESP32Lib/Audio/AudioSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Audio/AudioSystem.h -------------------------------------------------------------------------------- /src/ESP32Lib/Composite/Composite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Composite/Composite.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/Composite/Composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Composite/Composite.h -------------------------------------------------------------------------------- /src/ESP32Lib/Composite/CompositeL8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Composite/CompositeL8.h -------------------------------------------------------------------------------- /src/ESP32Lib/Composite/CompositePAL8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Composite/CompositePAL8.h -------------------------------------------------------------------------------- /src/ESP32Lib/Composite/ModeComposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Composite/ModeComposite.h -------------------------------------------------------------------------------- /src/ESP32Lib/Composite/PinConfigComposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Composite/PinConfigComposite.h -------------------------------------------------------------------------------- /src/ESP32Lib/Controller/GameControllers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Controller/GameControllers.h -------------------------------------------------------------------------------- /src/ESP32Lib/ESP32Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/ESP32Lib.h -------------------------------------------------------------------------------- /src/ESP32Lib/GfxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/GfxWrapper.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Animation.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Engine3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Engine3D.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Entity.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Font.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Graphics.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsL8CompositeSwapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsL8CompositeSwapped.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsPAL8Swapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsPAL8Swapped.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsPALColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsPALColor.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsR1G1B1A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsR1G1B1A1.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsR1G1B1A1X2S2Swapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsR1G1B1A1X2S2Swapped.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsR2G2B2A2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsR2G2B2A2.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsR2G2B2S2Swapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsR2G2B2S2Swapped.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsR5G5B4A2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsR5G5B4A2.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/GraphicsR5G5B4S2Swapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/GraphicsR5G5B4S2Swapped.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Image.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/ImageDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/ImageDrawer.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Mesh.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/RGB2YUV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/RGB2YUV.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/Sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/Sprites.h -------------------------------------------------------------------------------- /src/ESP32Lib/Graphics/TriangleTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Graphics/TriangleTree.h -------------------------------------------------------------------------------- /src/ESP32Lib/I2S/DMABufferDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/I2S/DMABufferDescriptor.h -------------------------------------------------------------------------------- /src/ESP32Lib/I2S/I2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/I2S/I2S.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/I2S/I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/I2S/I2S.h -------------------------------------------------------------------------------- /src/ESP32Lib/LED/LUT.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/ESP32Lib/LED/ParallelLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/LED/ParallelLED.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/LED/ParallelLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/LED/ParallelLED.h -------------------------------------------------------------------------------- /src/ESP32Lib/LED/ParallelLEDGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/LED/ParallelLEDGraphics.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/LED/ParallelLEDGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/LED/ParallelLEDGraphics.h -------------------------------------------------------------------------------- /src/ESP32Lib/LED/SerialLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/LED/SerialLED.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/LED/SerialLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/LED/SerialLED.h -------------------------------------------------------------------------------- /src/ESP32Lib/Math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Math/Matrix.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/CodePage437_8x14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/CodePage437_8x14.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/CodePage437_8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/CodePage437_8x16.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/CodePage437_8x19.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/CodePage437_8x19.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/CodePage437_8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/CodePage437_8x8.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/CodePage437_9x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/CodePage437_9x16.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/Font6x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/Font6x8.h -------------------------------------------------------------------------------- /src/ESP32Lib/Ressources/Font8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Ressources/Font8x8.h -------------------------------------------------------------------------------- /src/ESP32Lib/Tools/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/Tools/Log.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/Mode.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/PinConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/PinConfig.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA14Bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA14Bit.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA14BitI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA14BitI.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA14BitI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA14BitI.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA3Bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA3Bit.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA3BitI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA3BitI.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA3BitI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA3BitI.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA6Bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA6Bit.h -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA6BitI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA6BitI.cpp -------------------------------------------------------------------------------- /src/ESP32Lib/VGA/VGA6BitI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Lib/VGA/VGA6BitI.h -------------------------------------------------------------------------------- /src/ESP32Wiimote/.gitignore: -------------------------------------------------------------------------------- 1 | ESP32Wiimote.ino 2 | -------------------------------------------------------------------------------- /src/ESP32Wiimote/ESP32Wiimote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Wiimote/ESP32Wiimote.cpp -------------------------------------------------------------------------------- /src/ESP32Wiimote/ESP32Wiimote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Wiimote/ESP32Wiimote.h -------------------------------------------------------------------------------- /src/ESP32Wiimote/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Wiimote/LICENSE.md -------------------------------------------------------------------------------- /src/ESP32Wiimote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Wiimote/README.md -------------------------------------------------------------------------------- /src/ESP32Wiimote/TinyWiimote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Wiimote/TinyWiimote.cpp -------------------------------------------------------------------------------- /src/ESP32Wiimote/TinyWiimote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESP32Wiimote/TinyWiimote.h -------------------------------------------------------------------------------- /src/ESPectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ESPectrum.cpp -------------------------------------------------------------------------------- /src/FileSNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/FileSNA.cpp -------------------------------------------------------------------------------- /src/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/FileUtils.cpp -------------------------------------------------------------------------------- /src/FileZ80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/FileZ80.cpp -------------------------------------------------------------------------------- /src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Font.cpp -------------------------------------------------------------------------------- /src/Mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Mem.cpp -------------------------------------------------------------------------------- /src/OSDMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/OSDMain.cpp -------------------------------------------------------------------------------- /src/OSDMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/OSDMenu.cpp -------------------------------------------------------------------------------- /src/PS2Boot/PS2KeyAdvanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/PS2Boot/PS2KeyAdvanced.cpp -------------------------------------------------------------------------------- /src/PS2Boot/PS2KeyAdvanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/PS2Boot/PS2KeyAdvanced.h -------------------------------------------------------------------------------- /src/PS2Boot/PS2KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/PS2Boot/PS2KeyCode.h -------------------------------------------------------------------------------- /src/PS2Boot/PS2KeyTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/PS2Boot/PS2KeyTable.h -------------------------------------------------------------------------------- /src/PS2Kbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/PS2Kbd.cpp -------------------------------------------------------------------------------- /src/Ports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Ports.cpp -------------------------------------------------------------------------------- /src/Tape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Tape.cpp -------------------------------------------------------------------------------- /src/Wiimote2Keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Wiimote2Keys.cpp -------------------------------------------------------------------------------- /src/Z80_JLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/Z80_JLS.cpp -------------------------------------------------------------------------------- /src/ZX-ESPectrum.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/ZX-ESPectrum.ino -------------------------------------------------------------------------------- /src/pwm_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/pwm_audio.c -------------------------------------------------------------------------------- /src/reg_struct/esp32_timer_group_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/reg_struct/esp32_timer_group_struct.h -------------------------------------------------------------------------------- /src/reg_struct/esp32c3_timer_group_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/reg_struct/esp32c3_timer_group_struct.h -------------------------------------------------------------------------------- /src/reg_struct/esp32s2_timer_group_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/reg_struct/esp32s2_timer_group_struct.h -------------------------------------------------------------------------------- /src/reg_struct/esp32s3_timer_group_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/reg_struct/esp32s3_timer_group_struct.h -------------------------------------------------------------------------------- /src/vga_6bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcrespo3d/ZX-ESPectrum-Wiimote/HEAD/src/vga_6bit.cpp --------------------------------------------------------------------------------