├── LICENSE.txt ├── README.md ├── esp32 ├── TinyAnotherWorldttgovga32 │ ├── anotherworld │ │ ├── PS2Kbd.cpp │ │ ├── PS2Kbd.h │ │ ├── anotherworld.ino │ │ ├── bank.cpp │ │ ├── bank.h │ │ ├── databank01.h │ │ ├── databank02.h │ │ ├── databank03.h │ │ ├── databank04.h │ │ ├── databank05.h │ │ ├── databank06.h │ │ ├── databank07.h │ │ ├── databank08.h │ │ ├── databank09.h │ │ ├── databank0a.h │ │ ├── databank0b.h │ │ ├── databank0c.h │ │ ├── databank0d.h │ │ ├── datamemlistbin.h │ │ ├── endian.h │ │ ├── engine.cpp │ │ ├── engine.h │ │ ├── gbConfig.h │ │ ├── gbGlobals.h │ │ ├── hardware.h │ │ ├── intern.h │ │ ├── main.h │ │ ├── mixer.cpp │ │ ├── mixer.h │ │ ├── osd.cpp │ │ ├── osd.h │ │ ├── parts.cpp │ │ ├── parts.h │ │ ├── regi2c_ctrl.h │ │ ├── resource.cpp │ │ ├── resource.h │ │ ├── sfxplayer.cpp │ │ ├── sfxplayer.h │ │ ├── staticres.cpp │ │ ├── sys.h │ │ ├── sysImplementation.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── vga6bit.cpp │ │ ├── vga6bit.h │ │ ├── video.cpp │ │ ├── video.h │ │ ├── vm.cpp │ │ └── vm.h │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ └── test │ │ └── README └── precompile │ └── vga360x200x70hzbitluni.zip └── preview ├── nada.txt ├── previewAnother.gif └── previewAnotherCar.gif /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/README.md -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/PS2Kbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/PS2Kbd.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/PS2Kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/PS2Kbd.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/anotherworld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/anotherworld.ino -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/bank.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/bank.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank01.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank02.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank03.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank04.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank05.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank06.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank07.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank07.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank08.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank09.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank09.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank0a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank0a.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank0b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank0b.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank0c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank0c.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/databank0d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/databank0d.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/datamemlistbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/datamemlistbin.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/endian.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/engine.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/engine.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/gbConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/gbConfig.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/gbGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/gbGlobals.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/hardware.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/intern.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/main.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/mixer.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/mixer.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/osd.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/osd.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/parts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/parts.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/parts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/parts.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/regi2c_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/regi2c_ctrl.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/resource.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/resource.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/sfxplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/sfxplayer.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/sfxplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/sfxplayer.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/staticres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/staticres.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/sys.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/sysImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/sysImplementation.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/util.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/util.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/vga6bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/vga6bit.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/vga6bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/vga6bit.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/video.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/video.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/vm.cpp -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/anotherworld/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/anotherworld/vm.h -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/include/README: -------------------------------------------------------------------------------- 1 | nada -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/lib/README: -------------------------------------------------------------------------------- 1 | nada -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/TinyAnotherWorldttgovga32/platformio.ini -------------------------------------------------------------------------------- /esp32/TinyAnotherWorldttgovga32/test/README: -------------------------------------------------------------------------------- 1 | nada -------------------------------------------------------------------------------- /esp32/precompile/vga360x200x70hzbitluni.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/esp32/precompile/vga360x200x70hzbitluni.zip -------------------------------------------------------------------------------- /preview/nada.txt: -------------------------------------------------------------------------------- 1 | nada 2 | -------------------------------------------------------------------------------- /preview/previewAnother.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/preview/previewAnother.gif -------------------------------------------------------------------------------- /preview/previewAnotherCar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpsubc8/ESP32TinyAnotherWorld/HEAD/preview/previewAnotherCar.gif --------------------------------------------------------------------------------