├── .gitignore ├── Ambilight ├── Ambilight.c ├── Ambilight.qbs ├── CMakeLists.txt ├── Makefile ├── ReadMe.md ├── docs │ └── Description_RU.txt ├── icons │ ├── ambilight_48x48.gif │ └── icon_ambilight_48x48.h ├── make_ep1.bat └── qtcreator │ ├── Ambilight.cflags │ ├── Ambilight.config │ ├── Ambilight.creator │ ├── Ambilight.cxxflags │ ├── Ambilight.files │ └── Ambilight.includes ├── BadApple ├── BadApple.c ├── BadApple.qbs ├── BadApple_SDL2.c ├── CMakeLists.txt ├── Makefile ├── Makefile.mcore ├── ReadMe.md ├── cybiko │ ├── BadApple.c │ ├── Makefile │ ├── ReadMe.md │ ├── bmp2fbm.py │ ├── make.bat │ └── res │ │ ├── 0.bmp │ │ ├── 0.help │ │ ├── 1.bmp │ │ ├── classic │ │ └── root.inf │ │ ├── filer_classic.list │ │ ├── filer_xtreme.list │ │ ├── root.bmp │ │ ├── root.spl │ │ ├── title.mus │ │ └── xtreme │ │ └── root.inf ├── make_ep1.bat ├── qtcreator │ ├── BadApple.cflags │ ├── BadApple.config │ ├── BadApple.creator │ ├── BadApple.cxxflags │ ├── BadApple.files │ └── BadApple.includes └── res │ ├── BadApple.m4a │ ├── BadApple.mp3 │ ├── BadApple_160p.fbm │ ├── BadApple_220p.fbm │ ├── ReadMe.md │ └── bmp2fbm.py ├── BattDump ├── BattDump.c ├── BattDump.qbs ├── CMakeLists.txt ├── Makefile ├── ReadMe.md ├── extended_notice │ ├── BattDump_SEN.c │ ├── Makefile │ └── make_ep1.bat ├── make_ep1.bat └── qtcreator │ ├── BattDump.cflags │ ├── BattDump.config │ ├── BattDump.creator │ ├── BattDump.cxxflags │ ├── BattDump.files │ └── BattDump.includes ├── Benchmark ├── Benchmark.c ├── Benchmark.h ├── Benchmark.qbs ├── CMakeLists.txt ├── FireEffect.c ├── Makefile ├── Makefile.eg1 ├── Makefile.mcore ├── Phases.c ├── ReadMe.md ├── delay_armv4t_ADS.S ├── delay_armv4t_ADS_fix.S ├── delay_armv4t_GCC.S ├── delay_mcore340_GCC.S ├── dhry.h ├── dhry_1.c ├── dhry_2.c ├── icons │ ├── benchmark_48x48.gif │ └── icon_benchmark_48x48.h ├── make_em1.bat ├── make_em2.bat ├── make_ep1.bat ├── make_ep2.bat ├── misc │ ├── DebugL7e │ │ ├── CMakeLists.txt │ │ ├── DebugL7e.c │ │ ├── Makefile │ │ └── make_ep1.bat │ ├── OverclockCpu │ │ ├── Makefile │ │ ├── OverclockCpu.c │ │ └── make_ep1.bat │ └── VibroSignal │ │ ├── Makefile │ │ ├── VibroSignal.c │ │ └── make_ep1.bat └── qtcreator │ ├── Benchmark.cflags │ ├── Benchmark.config │ ├── Benchmark.creator │ ├── Benchmark.cxxflags │ ├── Benchmark.files │ └── Benchmark.includes ├── CMakeLists.txt ├── Dumper ├── CMakeLists.txt ├── Dumper.c ├── Dumper.qbs ├── Makefile ├── ReadMe.md ├── dumps │ ├── D_SOC_E1.bin │ ├── D_SOC_L7.bin │ └── D_SOC_L7e.bin ├── icons │ ├── dumper_48x48.gif │ └── icon_dumper_48x48.h ├── make_ep1.bat └── qtcreator │ ├── Dumper.cflags │ ├── Dumper.config │ ├── Dumper.creator │ ├── Dumper.cxxflags │ ├── Dumper.files │ └── Dumper.includes ├── ElfBox ├── CMakeLists.txt ├── ElfBox.c ├── ElfBox.qbs ├── Makefile ├── Makefile.eg1 ├── ReadMe.md ├── icons │ ├── disk_15x15.gif │ ├── elf_15x15.gif │ ├── elfbox_48x48.gif │ ├── file_15x15.gif │ ├── folder_15x15.gif │ ├── icon_disk_15x15.h │ ├── icon_elf_15x15.h │ ├── icon_elfbox_48x48.h │ ├── icon_file_15x15.h │ └── icon_folder_15x15.h ├── make_ep1.bat └── qtcreator │ ├── ElfBox.cflags │ ├── ElfBox.config │ ├── ElfBox.creator │ ├── ElfBox.cxxflags │ ├── ElfBox.files │ └── ElfBox.includes ├── FireEffect ├── CMakeLists.txt ├── FireEffect.c ├── FireEffect.qbs ├── Makefile ├── ReadMe.md ├── black_and_white │ ├── FireEffect_BW.c │ ├── Makefile │ └── make_ep1.bat ├── make_ep1.bat ├── make_ep2.bat └── qtcreator │ ├── FireEffect.cflags │ ├── FireEffect.config │ ├── FireEffect.creator │ ├── FireEffect.cxxflags │ ├── FireEffect.files │ └── FireEffect.includes ├── FlipDetector ├── CMakeLists.txt ├── FlipDetector.c ├── FlipDetector.qbs ├── Makefile ├── ReadMe.md ├── make_ep1.bat └── qtcreator │ ├── FlipDetector.cflags │ ├── FlipDetector.config │ ├── FlipDetector.creator │ ├── FlipDetector.cxxflags │ ├── FlipDetector.files │ └── FlipDetector.includes ├── Neko ├── CMakeLists.txt ├── Makefile ├── Neko.c ├── Neko.qbs ├── ReadMe.md ├── icons │ ├── icon_neko_48x48.h │ └── neko_48x48.gif ├── make_ep1.bat ├── qtcreator │ ├── Neko.cflags │ ├── Neko.config │ ├── Neko.creator │ ├── Neko.cxxflags │ ├── Neko.files │ └── Neko.includes └── skins │ ├── Kitty.ani │ ├── Kitty.bmp │ ├── Neco.ani │ ├── Neco.bmp │ ├── Pepe.ani │ ├── Pepe.bmp │ ├── ReadMe.md │ ├── Sheep.ani │ ├── Sheep.bmp │ ├── Vik89.ani │ ├── Vik89.bmp │ └── bmp2ani.py ├── Overclock ├── CMakeLists.txt ├── Clock.c ├── Makefile ├── Makefile.eg1 ├── Overclock.c ├── Overclock.h ├── Overclock.qbs ├── ReadMe.md ├── icons │ ├── icon_overclock_48x48.h │ └── overclock_48x48.gif ├── make_ep1.bat └── qtcreator │ ├── Overclock.cflags │ ├── Overclock.config │ ├── Overclock.creator │ ├── Overclock.cxxflags │ ├── Overclock.files │ └── Overclock.includes ├── P2kElfs.qbs ├── Perlin ├── CMakeLists.txt ├── Engine.c ├── Engine.h ├── Fixed.h ├── Makefile ├── Perlin.c ├── Perlin.qbs ├── ReadMe.md ├── Trig.c ├── Trig.h ├── make_ep1.bat ├── make_ep2.bat └── qtcreator │ ├── Perlin.cflags │ ├── Perlin.config │ ├── Perlin.creator │ ├── Perlin.cxxflags │ ├── Perlin.files │ └── Perlin.includes ├── PowerAlert ├── CMakeLists.txt ├── Makefile ├── PowerAlert.c ├── PowerAlert.qbs ├── ReadMe.md ├── make_ep1.bat └── qtcreator │ ├── PowerAlert.cflags │ ├── PowerAlert.config │ ├── PowerAlert.creator │ ├── PowerAlert.cxxflags │ ├── PowerAlert.files │ └── PowerAlert.includes ├── ReadMe.md ├── Screenshot ├── CMakeLists.txt ├── Makefile ├── ReadMe.md ├── Screenshot.c ├── Screenshot.qbs ├── make_ep1.bat └── qtcreator │ ├── Screenshot.cflags │ ├── Screenshot.config │ ├── Screenshot.creator │ ├── Screenshot.cxxflags │ ├── Screenshot.files │ └── Screenshot.includes ├── Snow ├── CMakeLists.txt ├── Makefile ├── ReadMe.md ├── Snow.c ├── Snow.qbs ├── icons │ ├── icon_snow_48x48.h │ └── snow_48x48.gif ├── make_ep1.bat └── qtcreator │ ├── Snow.cflags │ ├── Snow.config │ ├── Snow.creator │ ├── Snow.cxxflags │ ├── Snow.files │ └── Snow.includes ├── Spout ├── CMakeLists.txt ├── Font.h ├── License.txt ├── Makefile ├── Piece.c ├── ReadMe.md ├── Sintable.h ├── Spout.c ├── Spout.h ├── Spout.qbs ├── long_tail │ ├── Font.h │ ├── Makefile │ ├── Piece.c │ ├── Sintable.h │ ├── Spout.c │ ├── Spout.h │ └── make_ep1.bat ├── make_ep1.bat ├── make_ep2.bat └── qtcreator │ ├── Spout.cflags │ ├── Spout.config │ ├── Spout.creator │ ├── Spout.cxxflags │ ├── Spout.files │ └── Spout.includes ├── VibroHaptic ├── CMakeLists.txt ├── Makefile ├── ReadMe.md ├── VibroHaptic.c ├── VibroHaptic.qbs ├── docs │ └── Signals.md ├── icons │ ├── icon_vibrohaptic_48x48.h │ └── vibrohaptic_48x48.gif ├── make_ep1.bat └── qtcreator │ ├── VibroHaptic.cflags │ ├── VibroHaptic.config │ ├── VibroHaptic.creator │ ├── VibroHaptic.cxxflags │ ├── VibroHaptic.files │ └── VibroHaptic.includes ├── Yeti3D-Old ├── CMakeLists.txt ├── Makefile ├── Makefile.mcore ├── Makefile.pc ├── Makefile.web ├── ReadMe.md ├── Yeti3D-Old.qbs ├── Yeti3D.c ├── Yeti3D.lua ├── Yeti3D.sin ├── Yeti3D.tex ├── big-endian │ ├── Yeti3D.lua │ └── Yeti3D.sin ├── data.c ├── data.h ├── draw.c ├── main.c ├── main_sdl2.c ├── make_ep1.bat ├── make_ep2.bat ├── make_gba.bat ├── qtcreator │ ├── Yeti3D-Old.cflags │ ├── Yeti3D-Old.config │ ├── Yeti3D-Old.creator │ ├── Yeti3D-Old.cxxflags │ ├── Yeti3D-Old.files │ └── Yeti3D-Old.includes ├── readme.txt ├── web │ └── index.html ├── yeti.c └── yeti.h ├── Yeti3D ├── CMakeLists.txt ├── Makefile ├── Makefile.mcore ├── Makefile.pc ├── Makefile.web ├── ReadMe.md ├── Yeti3D.lua ├── Yeti3D.map ├── Yeti3D.qbs ├── Yeti3D.rec ├── Yeti3D.sin ├── Yeti3D.spr ├── Yeti3D.tex ├── big-endian │ ├── Yeti3D.lua │ ├── Yeti3D.map │ ├── Yeti3D.rec │ ├── Yeti3D.sin │ └── Yeti3D.spr ├── data.c ├── data.h ├── draw.c ├── e1m1.c ├── extra.c ├── extra.h ├── font.c ├── font.h ├── game.c ├── game.h ├── gba.h ├── license.txt ├── logs │ ├── DAL_pointers.log │ ├── E1_Memory_Statistic.log │ ├── E1_phase_1.log │ ├── E1_phase_2.log │ ├── E1_phase_3.log │ ├── E1_phase_4.log │ ├── E1_phase_5.log │ ├── Game_Java_JVM.log │ ├── Game_Ugh_ELF.log │ ├── L6_Memory_Statistic.log │ ├── L6_phase_1.log │ ├── L6_phase_2.log │ ├── L6_phase_3.log │ ├── L6_phase_4.log │ ├── L6_phase_5.log │ ├── Memory_Usage.log │ ├── V360_ROT0.log │ └── V360_ROT90.log ├── main_gba.c ├── main_p2k.c ├── main_p2k_task.c ├── main_sdl.c ├── main_sdl2.c ├── make_ep1.bat ├── make_ep2.bat ├── make_gba.bat ├── make_task.bat ├── maps.c ├── model.c ├── model.h ├── optimize │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.pc │ ├── data.c │ ├── data.h │ ├── draw.c │ ├── e1m1.c │ ├── extra.c │ ├── extra.h │ ├── font.c │ ├── font.h │ ├── game.c │ ├── game.h │ ├── gba.h │ ├── main_gba.c │ ├── main_p2k.c │ ├── main_p2k_task.c │ ├── main_sdl.c │ ├── make_ep1.bat │ ├── make_ep2.bat │ ├── make_gba.bat │ ├── make_task.bat │ ├── maps.c │ ├── model.c │ ├── model.h │ ├── sprites.c │ ├── sprites.h │ ├── viewports.h │ ├── yeti.c │ └── yeti.h ├── qtcreator │ ├── Yeti3D.cflags │ ├── Yeti3D.config │ ├── Yeti3D.creator │ ├── Yeti3D.cxxflags │ ├── Yeti3D.files │ └── Yeti3D.includes ├── readme.txt ├── sprites.c ├── sprites.h ├── tools │ ├── color_convert.py │ ├── dump_res.c │ └── swap_bytes.py ├── viewports.h ├── web │ └── index.html ├── yeti.c └── yeti.h ├── docs ├── Build-CMake-CLion.md ├── Build-CMake-VisualStudioCode.md ├── Build-Qbs-Qt_Creator.md ├── ELFs-Debugging.md ├── GPUs-Motorola.md ├── Motorola_P2K_ELFs.bbcodes ├── Useful-Notes.md └── symbols_of_all_elfs.sym ├── images ├── CMake_CLion_Custom_Compiler.png ├── CMake_CLion_Settings.png ├── CMake_CLion_Toolchains.png ├── Photo_BadApple_Cybiko_1.jpg ├── Photo_BadApple_L6_E1_1.jpg ├── Photo_FireEffect_L6_E1_1.jpg ├── Photo_Perlin_L6_E1_1.jpg ├── Photo_Spout_L6_E1_1.jpg ├── Photo_Spout_V3i_1.jpg ├── Photo_Yeti3D_L6_E1_1.jpg ├── Photo_Yeti3D_Old_L6_E1_1.jpg ├── Photo_Yeti3D_V235_1.jpg ├── Photo_Yeti3D_V360_1.jpg ├── Photo_Yeti3D_V3i_1.jpg ├── Photo_Yeti3D_V3i_2.jpg ├── Photo_vNesC_E1_V3x_1.jpg ├── Photo_vNesC_E770v_1.jpg ├── Screenshot_Ambilight_E1_1.png ├── Screenshot_Ambilight_E1_2.png ├── Screenshot_Ambilight_E1_3.png ├── Screenshot_Ambilight_E1_4.png ├── Screenshot_Ambilight_V600_1.png ├── Screenshot_Ambilight_V600_2.png ├── Screenshot_Ambilight_V600_3.png ├── Screenshot_Ambilight_V600_4.png ├── Screenshot_BadApple_E1_1.png ├── Screenshot_BadApple_E1_2.png ├── Screenshot_BadApple_E1_3.png ├── Screenshot_BadApple_L6_1.png ├── Screenshot_BadApple_L6_2.png ├── Screenshot_BadApple_L6_3.png ├── Screenshot_BadApple_V3x_1.png ├── Screenshot_BadApple_V3x_2.png ├── Screenshot_BadApple_V3x_3.png ├── Screenshot_BattDump_E1_1.png ├── Screenshot_BattDump_E1_2.png ├── Screenshot_BattDump_L6_1.png ├── Screenshot_Benchmark_C650_1.png ├── Screenshot_Benchmark_C650_2.png ├── Screenshot_Benchmark_C650_3.png ├── Screenshot_Benchmark_C650_4.png ├── Screenshot_Benchmark_E1_1.png ├── Screenshot_Benchmark_E1_10.jpg ├── Screenshot_Benchmark_E1_11.jpg ├── Screenshot_Benchmark_E1_2.png ├── Screenshot_Benchmark_E1_3.png ├── Screenshot_Benchmark_E1_4.png ├── Screenshot_Benchmark_E1_5.png ├── Screenshot_Benchmark_E1_6.png ├── Screenshot_Benchmark_E1_7.png ├── Screenshot_Benchmark_E1_8.png ├── Screenshot_Benchmark_E1_9.png ├── Screenshot_Benchmark_L6_1.png ├── Screenshot_Benchmark_L6_2.png ├── Screenshot_Benchmark_L6_3.png ├── Screenshot_Benchmark_L6_4.png ├── Screenshot_Benchmark_L6_5.png ├── Screenshot_Benchmark_L6_6.png ├── Screenshot_Benchmark_L6_7.png ├── Screenshot_Benchmark_L6_8.png ├── Screenshot_Benchmark_V600_1.png ├── Screenshot_Benchmark_V600_2.png ├── Screenshot_Benchmark_V600_3.png ├── Screenshot_Benchmark_V600_4.png ├── Screenshot_Benchmark_V600_5.png ├── Screenshot_Benchmark_V600_6.png ├── Screenshot_Benchmark_V600_7.png ├── Screenshot_Dumper_E1_1.png ├── Screenshot_Dumper_E1_2.png ├── Screenshot_Dumper_E1_3.png ├── Screenshot_Dumper_E1_4.png ├── Screenshot_Dumper_E1_5.png ├── Screenshot_Dumper_L6_1.png ├── Screenshot_Dumper_L6_2.png ├── Screenshot_Dumper_L6_3.png ├── Screenshot_Dumper_L6_4.png ├── Screenshot_Dumper_V600_1.png ├── Screenshot_Dumper_V600_2.png ├── Screenshot_Dumper_V600_3.png ├── Screenshot_ElfBox_C650_1.png ├── Screenshot_ElfBox_C650_2.png ├── Screenshot_ElfBox_C650_3.png ├── Screenshot_ElfBox_E1_1.png ├── Screenshot_ElfBox_E1_2.png ├── Screenshot_ElfBox_E1_3.png ├── Screenshot_ElfBox_E1_4.png ├── Screenshot_ElfBox_E1_5.png ├── Screenshot_ElfBox_L6_1.png ├── Screenshot_ElfBox_L6_2.png ├── Screenshot_ElfBox_L6_3.png ├── Screenshot_ElfBox_V600_1.png ├── Screenshot_ElfBox_V600_2.png ├── Screenshot_ElfBox_V600_3.png ├── Screenshot_FireEffect_E1_1.png ├── Screenshot_FireEffect_E1_2.png ├── Screenshot_FireEffect_L6_1.png ├── Screenshot_FireEffect_L6_2.png ├── Screenshot_MIPS_Big-Endian.png ├── Screenshot_Neko_E1_1.png ├── Screenshot_Neko_E1_2.png ├── Screenshot_Neko_E1_3.png ├── Screenshot_Neko_E1_4.png ├── Screenshot_Neko_E1_5.gif ├── Screenshot_Neko_E1_6.gif ├── Screenshot_Neko_E1_7.gif ├── Screenshot_Neko_E1_8.gif ├── Screenshot_Neko_L6_1.png ├── Screenshot_Neko_L6_2.png ├── Screenshot_Neko_L6_3.png ├── Screenshot_Neko_L6_4.png ├── Screenshot_Neko_L6_5.gif ├── Screenshot_Neko_L6_6.gif ├── Screenshot_Neko_L6_7.gif ├── Screenshot_Neko_L6_8.gif ├── Screenshot_Neko_V600_1.png ├── Screenshot_Neko_V600_2.png ├── Screenshot_Neko_V600_3.png ├── Screenshot_Neko_V600_4.png ├── Screenshot_Neko_V600_5.gif ├── Screenshot_Neko_V600_6.gif ├── Screenshot_Neko_V600_7.gif ├── Screenshot_Neko_V600_8.gif ├── Screenshot_Overclock_Benchmark_E1_1.png ├── Screenshot_Overclock_Benchmark_E1_2.png ├── Screenshot_Overclock_Benchmark_L6_1.png ├── Screenshot_Overclock_Benchmark_L6_2.png ├── Screenshot_Overclock_Benchmark_L6_3.png ├── Screenshot_Overclock_Benchmark_L6_4.png ├── Screenshot_Overclock_C650_1.png ├── Screenshot_Overclock_C650_2.png ├── Screenshot_Overclock_C650_3.png ├── Screenshot_Overclock_E1_1.png ├── Screenshot_Overclock_E1_2.png ├── Screenshot_Overclock_E1_3.png ├── Screenshot_Overclock_JBenchmark_E1_1.png ├── Screenshot_Overclock_JBenchmark_E1_2.png ├── Screenshot_Overclock_JBenchmark_L6_1.png ├── Screenshot_Overclock_JBenchmark_L6_2.png ├── Screenshot_Overclock_JBenchmark_L6_3.png ├── Screenshot_Overclock_JBenchmark_L6_4.png ├── Screenshot_Overclock_L6_1.png ├── Screenshot_Overclock_L6_2.png ├── Screenshot_Overclock_L6_3.png ├── Screenshot_Overclock_V600_1.png ├── Screenshot_Overclock_V600_2.png ├── Screenshot_Overclock_V600_3.png ├── Screenshot_Perlin_E1_1.png ├── Screenshot_Perlin_E1_2.png ├── Screenshot_Perlin_E1_3.png ├── Screenshot_Perlin_L6_1.png ├── Screenshot_Perlin_L6_2.png ├── Screenshot_Perlin_L6_3.png ├── Screenshot_Screenshot_E1_1.png ├── Screenshot_Screenshot_L6_1.png ├── Screenshot_Screenshot_V600_1.png ├── Screenshot_Spout_C650_1.png ├── Screenshot_Spout_C650_2.png ├── Screenshot_Spout_C650_3.png ├── Screenshot_Spout_E1_1.png ├── Screenshot_Spout_E1_2.png ├── Screenshot_Spout_E1_3.png ├── Screenshot_Spout_L6_1.png ├── Screenshot_Spout_L6_2.png ├── Screenshot_Spout_L6_3.png ├── Screenshot_VibroHaptic_L6_1.png ├── Screenshot_VibroHaptic_L6_2.png ├── Screenshot_VibroHaptic_L6_3.png ├── Screenshot_VibroHaptic_L6_4.png ├── Screenshot_VibroHaptic_L6_5.png ├── Screenshot_VibroHaptic_L6_6.png ├── Screenshot_VibroHaptic_L6_7.png ├── Screenshot_VibroHaptic_L6_8.png ├── Screenshot_VibroHaptic_V600_1.png ├── Screenshot_VibroHaptic_V600_2.png ├── Screenshot_VibroHaptic_V600_3.png ├── Screenshot_VibroHaptic_V600_4.png ├── Screenshot_VibroHaptic_V600_5.png ├── Screenshot_Yeti3D_C650_1.png ├── Screenshot_Yeti3D_C650_2.png ├── Screenshot_Yeti3D_C650_3.png ├── Screenshot_Yeti3D_C650_4.png ├── Screenshot_Yeti3D_E1_1.png ├── Screenshot_Yeti3D_E1_2.png ├── Screenshot_Yeti3D_E1_3.png ├── Screenshot_Yeti3D_E770v_1.png ├── Screenshot_Yeti3D_E770v_2.png ├── Screenshot_Yeti3D_E770v_3.png ├── Screenshot_Yeti3D_E770v_4.png ├── Screenshot_Yeti3D_L6_1.png ├── Screenshot_Yeti3D_L6_2.png ├── Screenshot_Yeti3D_L6_3.png ├── Screenshot_Yeti3D_Old_E1_1.png ├── Screenshot_Yeti3D_Old_E1_2.png ├── Screenshot_Yeti3D_Old_E1_3.png ├── Screenshot_Yeti3D_Old_E1_4.png ├── Screenshot_Yeti3D_Old_L6_1.png ├── Screenshot_Yeti3D_Old_L6_2.png ├── Screenshot_Yeti3D_Old_L6_3.png ├── Screenshot_Yeti3D_Old_L6_4.png ├── Screenshot_Yeti3D_Old_V3x_1.png ├── Screenshot_Yeti3D_Old_V3x_2.png ├── Screenshot_Yeti3D_Old_V3x_3.png ├── Screenshot_Yeti3D_V3x_1.png ├── Screenshot_Yeti3D_V3x_2.png ├── Screenshot_Yeti3D_V3x_3.png ├── Screenshot_Yeti3D_V3x_4.png ├── Screenshot_vNesC_E770v_1.png ├── Screenshot_vNesC_E770v_2.png ├── Screenshot_vNesC_E770v_3.png ├── Screenshot_vNesC_E770v_4.png ├── Screenshot_vNesC_V3x_1.png ├── Screenshot_vNesC_V3x_2.png ├── Screenshot_vNesC_V3x_3.png ├── Screenshot_vNesC_V3x_4.png └── icons │ ├── 2048.gif │ ├── Ambilight.gif │ ├── BadApple.gif │ ├── BattDump.gif │ ├── Benchmark.gif │ ├── Dumper.gif │ ├── FireEffect.gif │ ├── Matrix.gif │ ├── Neko.gif │ ├── Overclock.gif │ ├── Perlin.gif │ ├── PowerAlert.gif │ ├── ReadMe.md │ ├── Screenshot.gif │ ├── Spout.gif │ ├── VibroHaptic.gif │ └── Yeti3D.gif └── vNesC ├── .gitignore ├── CMakeLists.txt ├── Makefile.eg1 ├── Makefile.mcore ├── Makefile.sdl1 ├── Makefile.sdl2 ├── ReadMe.md ├── Siemens ├── Func.asm ├── Main.c └── ReadMe-ru_RU.txt ├── make_em2.bat ├── make_ep2.bat ├── qtcreator ├── vNesC.cflags ├── vNesC.config ├── vNesC.creator ├── vNesC.cxxflags ├── vNesC.files └── vNesC.includes ├── vNesC.c ├── vNesC.h ├── vNesC.qbs ├── vP2k.c ├── vSdl1.c └── vSdl2.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/.gitignore -------------------------------------------------------------------------------- /Ambilight/Ambilight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/Ambilight.c -------------------------------------------------------------------------------- /Ambilight/Ambilight.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/Ambilight.qbs -------------------------------------------------------------------------------- /Ambilight/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/CMakeLists.txt -------------------------------------------------------------------------------- /Ambilight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/Makefile -------------------------------------------------------------------------------- /Ambilight/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/ReadMe.md -------------------------------------------------------------------------------- /Ambilight/docs/Description_RU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/docs/Description_RU.txt -------------------------------------------------------------------------------- /Ambilight/icons/ambilight_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/icons/ambilight_48x48.gif -------------------------------------------------------------------------------- /Ambilight/icons/icon_ambilight_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/icons/icon_ambilight_48x48.h -------------------------------------------------------------------------------- /Ambilight/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/make_ep1.bat -------------------------------------------------------------------------------- /Ambilight/qtcreator/Ambilight.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Ambilight/qtcreator/Ambilight.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/qtcreator/Ambilight.config -------------------------------------------------------------------------------- /Ambilight/qtcreator/Ambilight.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Ambilight/qtcreator/Ambilight.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Ambilight/qtcreator/Ambilight.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/qtcreator/Ambilight.files -------------------------------------------------------------------------------- /Ambilight/qtcreator/Ambilight.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Ambilight/qtcreator/Ambilight.includes -------------------------------------------------------------------------------- /BadApple/BadApple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/BadApple.c -------------------------------------------------------------------------------- /BadApple/BadApple.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/BadApple.qbs -------------------------------------------------------------------------------- /BadApple/BadApple_SDL2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/BadApple_SDL2.c -------------------------------------------------------------------------------- /BadApple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/CMakeLists.txt -------------------------------------------------------------------------------- /BadApple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/Makefile -------------------------------------------------------------------------------- /BadApple/Makefile.mcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/Makefile.mcore -------------------------------------------------------------------------------- /BadApple/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/ReadMe.md -------------------------------------------------------------------------------- /BadApple/cybiko/BadApple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/BadApple.c -------------------------------------------------------------------------------- /BadApple/cybiko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/Makefile -------------------------------------------------------------------------------- /BadApple/cybiko/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/ReadMe.md -------------------------------------------------------------------------------- /BadApple/cybiko/bmp2fbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/bmp2fbm.py -------------------------------------------------------------------------------- /BadApple/cybiko/make.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | vmake new -p2 %1 3 | -------------------------------------------------------------------------------- /BadApple/cybiko/res/0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/0.bmp -------------------------------------------------------------------------------- /BadApple/cybiko/res/0.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/0.help -------------------------------------------------------------------------------- /BadApple/cybiko/res/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/1.bmp -------------------------------------------------------------------------------- /BadApple/cybiko/res/classic/root.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/classic/root.inf -------------------------------------------------------------------------------- /BadApple/cybiko/res/filer_classic.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/filer_classic.list -------------------------------------------------------------------------------- /BadApple/cybiko/res/filer_xtreme.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/filer_xtreme.list -------------------------------------------------------------------------------- /BadApple/cybiko/res/root.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/root.bmp -------------------------------------------------------------------------------- /BadApple/cybiko/res/root.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/root.spl -------------------------------------------------------------------------------- /BadApple/cybiko/res/title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/title.mus -------------------------------------------------------------------------------- /BadApple/cybiko/res/xtreme/root.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/cybiko/res/xtreme/root.inf -------------------------------------------------------------------------------- /BadApple/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/make_ep1.bat -------------------------------------------------------------------------------- /BadApple/qtcreator/BadApple.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /BadApple/qtcreator/BadApple.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/qtcreator/BadApple.config -------------------------------------------------------------------------------- /BadApple/qtcreator/BadApple.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /BadApple/qtcreator/BadApple.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /BadApple/qtcreator/BadApple.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/qtcreator/BadApple.files -------------------------------------------------------------------------------- /BadApple/qtcreator/BadApple.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/qtcreator/BadApple.includes -------------------------------------------------------------------------------- /BadApple/res/BadApple.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/res/BadApple.m4a -------------------------------------------------------------------------------- /BadApple/res/BadApple.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/res/BadApple.mp3 -------------------------------------------------------------------------------- /BadApple/res/BadApple_160p.fbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/res/BadApple_160p.fbm -------------------------------------------------------------------------------- /BadApple/res/BadApple_220p.fbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/res/BadApple_220p.fbm -------------------------------------------------------------------------------- /BadApple/res/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/res/ReadMe.md -------------------------------------------------------------------------------- /BadApple/res/bmp2fbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BadApple/res/bmp2fbm.py -------------------------------------------------------------------------------- /BattDump/BattDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/BattDump.c -------------------------------------------------------------------------------- /BattDump/BattDump.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/BattDump.qbs -------------------------------------------------------------------------------- /BattDump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/CMakeLists.txt -------------------------------------------------------------------------------- /BattDump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/Makefile -------------------------------------------------------------------------------- /BattDump/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/ReadMe.md -------------------------------------------------------------------------------- /BattDump/extended_notice/BattDump_SEN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/extended_notice/BattDump_SEN.c -------------------------------------------------------------------------------- /BattDump/extended_notice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/extended_notice/Makefile -------------------------------------------------------------------------------- /BattDump/extended_notice/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/extended_notice/make_ep1.bat -------------------------------------------------------------------------------- /BattDump/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/make_ep1.bat -------------------------------------------------------------------------------- /BattDump/qtcreator/BattDump.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /BattDump/qtcreator/BattDump.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/qtcreator/BattDump.config -------------------------------------------------------------------------------- /BattDump/qtcreator/BattDump.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /BattDump/qtcreator/BattDump.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /BattDump/qtcreator/BattDump.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/qtcreator/BattDump.files -------------------------------------------------------------------------------- /BattDump/qtcreator/BattDump.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/BattDump/qtcreator/BattDump.includes -------------------------------------------------------------------------------- /Benchmark/Benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Benchmark.c -------------------------------------------------------------------------------- /Benchmark/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Benchmark.h -------------------------------------------------------------------------------- /Benchmark/Benchmark.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Benchmark.qbs -------------------------------------------------------------------------------- /Benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /Benchmark/FireEffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/FireEffect.c -------------------------------------------------------------------------------- /Benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Makefile -------------------------------------------------------------------------------- /Benchmark/Makefile.eg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Makefile.eg1 -------------------------------------------------------------------------------- /Benchmark/Makefile.mcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Makefile.mcore -------------------------------------------------------------------------------- /Benchmark/Phases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/Phases.c -------------------------------------------------------------------------------- /Benchmark/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/ReadMe.md -------------------------------------------------------------------------------- /Benchmark/delay_armv4t_ADS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/delay_armv4t_ADS.S -------------------------------------------------------------------------------- /Benchmark/delay_armv4t_ADS_fix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/delay_armv4t_ADS_fix.S -------------------------------------------------------------------------------- /Benchmark/delay_armv4t_GCC.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/delay_armv4t_GCC.S -------------------------------------------------------------------------------- /Benchmark/delay_mcore340_GCC.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/delay_mcore340_GCC.S -------------------------------------------------------------------------------- /Benchmark/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/dhry.h -------------------------------------------------------------------------------- /Benchmark/dhry_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/dhry_1.c -------------------------------------------------------------------------------- /Benchmark/dhry_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/dhry_2.c -------------------------------------------------------------------------------- /Benchmark/icons/benchmark_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/icons/benchmark_48x48.gif -------------------------------------------------------------------------------- /Benchmark/icons/icon_benchmark_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/icons/icon_benchmark_48x48.h -------------------------------------------------------------------------------- /Benchmark/make_em1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/make_em1.bat -------------------------------------------------------------------------------- /Benchmark/make_em2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/make_em2.bat -------------------------------------------------------------------------------- /Benchmark/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/make_ep1.bat -------------------------------------------------------------------------------- /Benchmark/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/make_ep2.bat -------------------------------------------------------------------------------- /Benchmark/misc/DebugL7e/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/DebugL7e/CMakeLists.txt -------------------------------------------------------------------------------- /Benchmark/misc/DebugL7e/DebugL7e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/DebugL7e/DebugL7e.c -------------------------------------------------------------------------------- /Benchmark/misc/DebugL7e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/DebugL7e/Makefile -------------------------------------------------------------------------------- /Benchmark/misc/DebugL7e/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/DebugL7e/make_ep1.bat -------------------------------------------------------------------------------- /Benchmark/misc/OverclockCpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/OverclockCpu/Makefile -------------------------------------------------------------------------------- /Benchmark/misc/OverclockCpu/OverclockCpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/OverclockCpu/OverclockCpu.c -------------------------------------------------------------------------------- /Benchmark/misc/OverclockCpu/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/OverclockCpu/make_ep1.bat -------------------------------------------------------------------------------- /Benchmark/misc/VibroSignal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/VibroSignal/Makefile -------------------------------------------------------------------------------- /Benchmark/misc/VibroSignal/VibroSignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/VibroSignal/VibroSignal.c -------------------------------------------------------------------------------- /Benchmark/misc/VibroSignal/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/misc/VibroSignal/make_ep1.bat -------------------------------------------------------------------------------- /Benchmark/qtcreator/Benchmark.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Benchmark/qtcreator/Benchmark.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/qtcreator/Benchmark.config -------------------------------------------------------------------------------- /Benchmark/qtcreator/Benchmark.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Benchmark/qtcreator/Benchmark.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Benchmark/qtcreator/Benchmark.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/qtcreator/Benchmark.files -------------------------------------------------------------------------------- /Benchmark/qtcreator/Benchmark.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Benchmark/qtcreator/Benchmark.includes -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dumper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/CMakeLists.txt -------------------------------------------------------------------------------- /Dumper/Dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/Dumper.c -------------------------------------------------------------------------------- /Dumper/Dumper.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/Dumper.qbs -------------------------------------------------------------------------------- /Dumper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/Makefile -------------------------------------------------------------------------------- /Dumper/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/ReadMe.md -------------------------------------------------------------------------------- /Dumper/dumps/D_SOC_E1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/dumps/D_SOC_E1.bin -------------------------------------------------------------------------------- /Dumper/dumps/D_SOC_L7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/dumps/D_SOC_L7.bin -------------------------------------------------------------------------------- /Dumper/dumps/D_SOC_L7e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/dumps/D_SOC_L7e.bin -------------------------------------------------------------------------------- /Dumper/icons/dumper_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/icons/dumper_48x48.gif -------------------------------------------------------------------------------- /Dumper/icons/icon_dumper_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/icons/icon_dumper_48x48.h -------------------------------------------------------------------------------- /Dumper/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/make_ep1.bat -------------------------------------------------------------------------------- /Dumper/qtcreator/Dumper.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Dumper/qtcreator/Dumper.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/qtcreator/Dumper.config -------------------------------------------------------------------------------- /Dumper/qtcreator/Dumper.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Dumper/qtcreator/Dumper.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Dumper/qtcreator/Dumper.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/qtcreator/Dumper.files -------------------------------------------------------------------------------- /Dumper/qtcreator/Dumper.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Dumper/qtcreator/Dumper.includes -------------------------------------------------------------------------------- /ElfBox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/CMakeLists.txt -------------------------------------------------------------------------------- /ElfBox/ElfBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/ElfBox.c -------------------------------------------------------------------------------- /ElfBox/ElfBox.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/ElfBox.qbs -------------------------------------------------------------------------------- /ElfBox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/Makefile -------------------------------------------------------------------------------- /ElfBox/Makefile.eg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/Makefile.eg1 -------------------------------------------------------------------------------- /ElfBox/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/ReadMe.md -------------------------------------------------------------------------------- /ElfBox/icons/disk_15x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/disk_15x15.gif -------------------------------------------------------------------------------- /ElfBox/icons/elf_15x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/elf_15x15.gif -------------------------------------------------------------------------------- /ElfBox/icons/elfbox_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/elfbox_48x48.gif -------------------------------------------------------------------------------- /ElfBox/icons/file_15x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/file_15x15.gif -------------------------------------------------------------------------------- /ElfBox/icons/folder_15x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/folder_15x15.gif -------------------------------------------------------------------------------- /ElfBox/icons/icon_disk_15x15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/icon_disk_15x15.h -------------------------------------------------------------------------------- /ElfBox/icons/icon_elf_15x15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/icon_elf_15x15.h -------------------------------------------------------------------------------- /ElfBox/icons/icon_elfbox_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/icon_elfbox_48x48.h -------------------------------------------------------------------------------- /ElfBox/icons/icon_file_15x15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/icon_file_15x15.h -------------------------------------------------------------------------------- /ElfBox/icons/icon_folder_15x15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/icons/icon_folder_15x15.h -------------------------------------------------------------------------------- /ElfBox/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/make_ep1.bat -------------------------------------------------------------------------------- /ElfBox/qtcreator/ElfBox.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /ElfBox/qtcreator/ElfBox.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/qtcreator/ElfBox.config -------------------------------------------------------------------------------- /ElfBox/qtcreator/ElfBox.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /ElfBox/qtcreator/ElfBox.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /ElfBox/qtcreator/ElfBox.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/qtcreator/ElfBox.files -------------------------------------------------------------------------------- /ElfBox/qtcreator/ElfBox.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ElfBox/qtcreator/ElfBox.includes -------------------------------------------------------------------------------- /FireEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/CMakeLists.txt -------------------------------------------------------------------------------- /FireEffect/FireEffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/FireEffect.c -------------------------------------------------------------------------------- /FireEffect/FireEffect.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/FireEffect.qbs -------------------------------------------------------------------------------- /FireEffect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/Makefile -------------------------------------------------------------------------------- /FireEffect/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/ReadMe.md -------------------------------------------------------------------------------- /FireEffect/black_and_white/FireEffect_BW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/black_and_white/FireEffect_BW.c -------------------------------------------------------------------------------- /FireEffect/black_and_white/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/black_and_white/Makefile -------------------------------------------------------------------------------- /FireEffect/black_and_white/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/black_and_white/make_ep1.bat -------------------------------------------------------------------------------- /FireEffect/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/make_ep1.bat -------------------------------------------------------------------------------- /FireEffect/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/make_ep2.bat -------------------------------------------------------------------------------- /FireEffect/qtcreator/FireEffect.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /FireEffect/qtcreator/FireEffect.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/qtcreator/FireEffect.config -------------------------------------------------------------------------------- /FireEffect/qtcreator/FireEffect.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /FireEffect/qtcreator/FireEffect.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /FireEffect/qtcreator/FireEffect.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/qtcreator/FireEffect.files -------------------------------------------------------------------------------- /FireEffect/qtcreator/FireEffect.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FireEffect/qtcreator/FireEffect.includes -------------------------------------------------------------------------------- /FlipDetector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/CMakeLists.txt -------------------------------------------------------------------------------- /FlipDetector/FlipDetector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/FlipDetector.c -------------------------------------------------------------------------------- /FlipDetector/FlipDetector.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/FlipDetector.qbs -------------------------------------------------------------------------------- /FlipDetector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/Makefile -------------------------------------------------------------------------------- /FlipDetector/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/ReadMe.md -------------------------------------------------------------------------------- /FlipDetector/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/make_ep1.bat -------------------------------------------------------------------------------- /FlipDetector/qtcreator/FlipDetector.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /FlipDetector/qtcreator/FlipDetector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/qtcreator/FlipDetector.config -------------------------------------------------------------------------------- /FlipDetector/qtcreator/FlipDetector.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /FlipDetector/qtcreator/FlipDetector.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /FlipDetector/qtcreator/FlipDetector.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/qtcreator/FlipDetector.files -------------------------------------------------------------------------------- /FlipDetector/qtcreator/FlipDetector.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/FlipDetector/qtcreator/FlipDetector.includes -------------------------------------------------------------------------------- /Neko/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/CMakeLists.txt -------------------------------------------------------------------------------- /Neko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/Makefile -------------------------------------------------------------------------------- /Neko/Neko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/Neko.c -------------------------------------------------------------------------------- /Neko/Neko.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/Neko.qbs -------------------------------------------------------------------------------- /Neko/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/ReadMe.md -------------------------------------------------------------------------------- /Neko/icons/icon_neko_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/icons/icon_neko_48x48.h -------------------------------------------------------------------------------- /Neko/icons/neko_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/icons/neko_48x48.gif -------------------------------------------------------------------------------- /Neko/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/make_ep1.bat -------------------------------------------------------------------------------- /Neko/qtcreator/Neko.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Neko/qtcreator/Neko.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/qtcreator/Neko.config -------------------------------------------------------------------------------- /Neko/qtcreator/Neko.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Neko/qtcreator/Neko.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Neko/qtcreator/Neko.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/qtcreator/Neko.files -------------------------------------------------------------------------------- /Neko/qtcreator/Neko.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/qtcreator/Neko.includes -------------------------------------------------------------------------------- /Neko/skins/Kitty.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Kitty.ani -------------------------------------------------------------------------------- /Neko/skins/Kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Kitty.bmp -------------------------------------------------------------------------------- /Neko/skins/Neco.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Neco.ani -------------------------------------------------------------------------------- /Neko/skins/Neco.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Neco.bmp -------------------------------------------------------------------------------- /Neko/skins/Pepe.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Pepe.ani -------------------------------------------------------------------------------- /Neko/skins/Pepe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Pepe.bmp -------------------------------------------------------------------------------- /Neko/skins/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/ReadMe.md -------------------------------------------------------------------------------- /Neko/skins/Sheep.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Sheep.ani -------------------------------------------------------------------------------- /Neko/skins/Sheep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Sheep.bmp -------------------------------------------------------------------------------- /Neko/skins/Vik89.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Vik89.ani -------------------------------------------------------------------------------- /Neko/skins/Vik89.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/Vik89.bmp -------------------------------------------------------------------------------- /Neko/skins/bmp2ani.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Neko/skins/bmp2ani.py -------------------------------------------------------------------------------- /Overclock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/CMakeLists.txt -------------------------------------------------------------------------------- /Overclock/Clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/Clock.c -------------------------------------------------------------------------------- /Overclock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/Makefile -------------------------------------------------------------------------------- /Overclock/Makefile.eg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/Makefile.eg1 -------------------------------------------------------------------------------- /Overclock/Overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/Overclock.c -------------------------------------------------------------------------------- /Overclock/Overclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/Overclock.h -------------------------------------------------------------------------------- /Overclock/Overclock.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/Overclock.qbs -------------------------------------------------------------------------------- /Overclock/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/ReadMe.md -------------------------------------------------------------------------------- /Overclock/icons/icon_overclock_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/icons/icon_overclock_48x48.h -------------------------------------------------------------------------------- /Overclock/icons/overclock_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/icons/overclock_48x48.gif -------------------------------------------------------------------------------- /Overclock/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/make_ep1.bat -------------------------------------------------------------------------------- /Overclock/qtcreator/Overclock.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Overclock/qtcreator/Overclock.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/qtcreator/Overclock.config -------------------------------------------------------------------------------- /Overclock/qtcreator/Overclock.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Overclock/qtcreator/Overclock.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Overclock/qtcreator/Overclock.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/qtcreator/Overclock.files -------------------------------------------------------------------------------- /Overclock/qtcreator/Overclock.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Overclock/qtcreator/Overclock.includes -------------------------------------------------------------------------------- /P2kElfs.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/P2kElfs.qbs -------------------------------------------------------------------------------- /Perlin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/CMakeLists.txt -------------------------------------------------------------------------------- /Perlin/Engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Engine.c -------------------------------------------------------------------------------- /Perlin/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Engine.h -------------------------------------------------------------------------------- /Perlin/Fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Fixed.h -------------------------------------------------------------------------------- /Perlin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Makefile -------------------------------------------------------------------------------- /Perlin/Perlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Perlin.c -------------------------------------------------------------------------------- /Perlin/Perlin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Perlin.qbs -------------------------------------------------------------------------------- /Perlin/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/ReadMe.md -------------------------------------------------------------------------------- /Perlin/Trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Trig.c -------------------------------------------------------------------------------- /Perlin/Trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/Trig.h -------------------------------------------------------------------------------- /Perlin/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/make_ep1.bat -------------------------------------------------------------------------------- /Perlin/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/make_ep2.bat -------------------------------------------------------------------------------- /Perlin/qtcreator/Perlin.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Perlin/qtcreator/Perlin.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/qtcreator/Perlin.config -------------------------------------------------------------------------------- /Perlin/qtcreator/Perlin.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Perlin/qtcreator/Perlin.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Perlin/qtcreator/Perlin.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/qtcreator/Perlin.files -------------------------------------------------------------------------------- /Perlin/qtcreator/Perlin.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Perlin/qtcreator/Perlin.includes -------------------------------------------------------------------------------- /PowerAlert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/CMakeLists.txt -------------------------------------------------------------------------------- /PowerAlert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/Makefile -------------------------------------------------------------------------------- /PowerAlert/PowerAlert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/PowerAlert.c -------------------------------------------------------------------------------- /PowerAlert/PowerAlert.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/PowerAlert.qbs -------------------------------------------------------------------------------- /PowerAlert/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/ReadMe.md -------------------------------------------------------------------------------- /PowerAlert/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/make_ep1.bat -------------------------------------------------------------------------------- /PowerAlert/qtcreator/PowerAlert.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /PowerAlert/qtcreator/PowerAlert.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/qtcreator/PowerAlert.config -------------------------------------------------------------------------------- /PowerAlert/qtcreator/PowerAlert.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /PowerAlert/qtcreator/PowerAlert.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /PowerAlert/qtcreator/PowerAlert.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/qtcreator/PowerAlert.files -------------------------------------------------------------------------------- /PowerAlert/qtcreator/PowerAlert.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/PowerAlert/qtcreator/PowerAlert.includes -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Screenshot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/CMakeLists.txt -------------------------------------------------------------------------------- /Screenshot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/Makefile -------------------------------------------------------------------------------- /Screenshot/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/ReadMe.md -------------------------------------------------------------------------------- /Screenshot/Screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/Screenshot.c -------------------------------------------------------------------------------- /Screenshot/Screenshot.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/Screenshot.qbs -------------------------------------------------------------------------------- /Screenshot/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/make_ep1.bat -------------------------------------------------------------------------------- /Screenshot/qtcreator/Screenshot.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Screenshot/qtcreator/Screenshot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/qtcreator/Screenshot.config -------------------------------------------------------------------------------- /Screenshot/qtcreator/Screenshot.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Screenshot/qtcreator/Screenshot.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Screenshot/qtcreator/Screenshot.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/qtcreator/Screenshot.files -------------------------------------------------------------------------------- /Screenshot/qtcreator/Screenshot.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Screenshot/qtcreator/Screenshot.includes -------------------------------------------------------------------------------- /Snow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/CMakeLists.txt -------------------------------------------------------------------------------- /Snow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/Makefile -------------------------------------------------------------------------------- /Snow/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/ReadMe.md -------------------------------------------------------------------------------- /Snow/Snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/Snow.c -------------------------------------------------------------------------------- /Snow/Snow.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/Snow.qbs -------------------------------------------------------------------------------- /Snow/icons/icon_snow_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/icons/icon_snow_48x48.h -------------------------------------------------------------------------------- /Snow/icons/snow_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/icons/snow_48x48.gif -------------------------------------------------------------------------------- /Snow/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/make_ep1.bat -------------------------------------------------------------------------------- /Snow/qtcreator/Snow.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Snow/qtcreator/Snow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/qtcreator/Snow.config -------------------------------------------------------------------------------- /Snow/qtcreator/Snow.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Snow/qtcreator/Snow.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Snow/qtcreator/Snow.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/qtcreator/Snow.files -------------------------------------------------------------------------------- /Snow/qtcreator/Snow.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Snow/qtcreator/Snow.includes -------------------------------------------------------------------------------- /Spout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/CMakeLists.txt -------------------------------------------------------------------------------- /Spout/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Font.h -------------------------------------------------------------------------------- /Spout/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/License.txt -------------------------------------------------------------------------------- /Spout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Makefile -------------------------------------------------------------------------------- /Spout/Piece.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Piece.c -------------------------------------------------------------------------------- /Spout/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/ReadMe.md -------------------------------------------------------------------------------- /Spout/Sintable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Sintable.h -------------------------------------------------------------------------------- /Spout/Spout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Spout.c -------------------------------------------------------------------------------- /Spout/Spout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Spout.h -------------------------------------------------------------------------------- /Spout/Spout.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/Spout.qbs -------------------------------------------------------------------------------- /Spout/long_tail/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/Font.h -------------------------------------------------------------------------------- /Spout/long_tail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/Makefile -------------------------------------------------------------------------------- /Spout/long_tail/Piece.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/Piece.c -------------------------------------------------------------------------------- /Spout/long_tail/Sintable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/Sintable.h -------------------------------------------------------------------------------- /Spout/long_tail/Spout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/Spout.c -------------------------------------------------------------------------------- /Spout/long_tail/Spout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/Spout.h -------------------------------------------------------------------------------- /Spout/long_tail/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/long_tail/make_ep1.bat -------------------------------------------------------------------------------- /Spout/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/make_ep1.bat -------------------------------------------------------------------------------- /Spout/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/make_ep2.bat -------------------------------------------------------------------------------- /Spout/qtcreator/Spout.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Spout/qtcreator/Spout.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/qtcreator/Spout.config -------------------------------------------------------------------------------- /Spout/qtcreator/Spout.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Spout/qtcreator/Spout.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Spout/qtcreator/Spout.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/qtcreator/Spout.files -------------------------------------------------------------------------------- /Spout/qtcreator/Spout.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Spout/qtcreator/Spout.includes -------------------------------------------------------------------------------- /VibroHaptic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/CMakeLists.txt -------------------------------------------------------------------------------- /VibroHaptic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/Makefile -------------------------------------------------------------------------------- /VibroHaptic/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/ReadMe.md -------------------------------------------------------------------------------- /VibroHaptic/VibroHaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/VibroHaptic.c -------------------------------------------------------------------------------- /VibroHaptic/VibroHaptic.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/VibroHaptic.qbs -------------------------------------------------------------------------------- /VibroHaptic/docs/Signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/docs/Signals.md -------------------------------------------------------------------------------- /VibroHaptic/icons/icon_vibrohaptic_48x48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/icons/icon_vibrohaptic_48x48.h -------------------------------------------------------------------------------- /VibroHaptic/icons/vibrohaptic_48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/icons/vibrohaptic_48x48.gif -------------------------------------------------------------------------------- /VibroHaptic/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/make_ep1.bat -------------------------------------------------------------------------------- /VibroHaptic/qtcreator/VibroHaptic.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /VibroHaptic/qtcreator/VibroHaptic.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/qtcreator/VibroHaptic.config -------------------------------------------------------------------------------- /VibroHaptic/qtcreator/VibroHaptic.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /VibroHaptic/qtcreator/VibroHaptic.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /VibroHaptic/qtcreator/VibroHaptic.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/qtcreator/VibroHaptic.files -------------------------------------------------------------------------------- /VibroHaptic/qtcreator/VibroHaptic.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/VibroHaptic/qtcreator/VibroHaptic.includes -------------------------------------------------------------------------------- /Yeti3D-Old/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/CMakeLists.txt -------------------------------------------------------------------------------- /Yeti3D-Old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Makefile -------------------------------------------------------------------------------- /Yeti3D-Old/Makefile.mcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Makefile.mcore -------------------------------------------------------------------------------- /Yeti3D-Old/Makefile.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Makefile.pc -------------------------------------------------------------------------------- /Yeti3D-Old/Makefile.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Makefile.web -------------------------------------------------------------------------------- /Yeti3D-Old/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/ReadMe.md -------------------------------------------------------------------------------- /Yeti3D-Old/Yeti3D-Old.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Yeti3D-Old.qbs -------------------------------------------------------------------------------- /Yeti3D-Old/Yeti3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Yeti3D.c -------------------------------------------------------------------------------- /Yeti3D-Old/Yeti3D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Yeti3D.lua -------------------------------------------------------------------------------- /Yeti3D-Old/Yeti3D.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Yeti3D.sin -------------------------------------------------------------------------------- /Yeti3D-Old/Yeti3D.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/Yeti3D.tex -------------------------------------------------------------------------------- /Yeti3D-Old/big-endian/Yeti3D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/big-endian/Yeti3D.lua -------------------------------------------------------------------------------- /Yeti3D-Old/big-endian/Yeti3D.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/big-endian/Yeti3D.sin -------------------------------------------------------------------------------- /Yeti3D-Old/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/data.c -------------------------------------------------------------------------------- /Yeti3D-Old/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/data.h -------------------------------------------------------------------------------- /Yeti3D-Old/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/draw.c -------------------------------------------------------------------------------- /Yeti3D-Old/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/main.c -------------------------------------------------------------------------------- /Yeti3D-Old/main_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/main_sdl2.c -------------------------------------------------------------------------------- /Yeti3D-Old/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/make_ep1.bat -------------------------------------------------------------------------------- /Yeti3D-Old/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/make_ep2.bat -------------------------------------------------------------------------------- /Yeti3D-Old/make_gba.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/make_gba.bat -------------------------------------------------------------------------------- /Yeti3D-Old/qtcreator/Yeti3D-Old.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Yeti3D-Old/qtcreator/Yeti3D-Old.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/qtcreator/Yeti3D-Old.config -------------------------------------------------------------------------------- /Yeti3D-Old/qtcreator/Yeti3D-Old.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Yeti3D-Old/qtcreator/Yeti3D-Old.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Yeti3D-Old/qtcreator/Yeti3D-Old.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/qtcreator/Yeti3D-Old.files -------------------------------------------------------------------------------- /Yeti3D-Old/qtcreator/Yeti3D-Old.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/qtcreator/Yeti3D-Old.includes -------------------------------------------------------------------------------- /Yeti3D-Old/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/readme.txt -------------------------------------------------------------------------------- /Yeti3D-Old/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/web/index.html -------------------------------------------------------------------------------- /Yeti3D-Old/yeti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/yeti.c -------------------------------------------------------------------------------- /Yeti3D-Old/yeti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D-Old/yeti.h -------------------------------------------------------------------------------- /Yeti3D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/CMakeLists.txt -------------------------------------------------------------------------------- /Yeti3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Makefile -------------------------------------------------------------------------------- /Yeti3D/Makefile.mcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Makefile.mcore -------------------------------------------------------------------------------- /Yeti3D/Makefile.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Makefile.pc -------------------------------------------------------------------------------- /Yeti3D/Makefile.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Makefile.web -------------------------------------------------------------------------------- /Yeti3D/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/ReadMe.md -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.lua -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.map -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.qbs -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.rec -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.sin -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.spr -------------------------------------------------------------------------------- /Yeti3D/Yeti3D.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/Yeti3D.tex -------------------------------------------------------------------------------- /Yeti3D/big-endian/Yeti3D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/big-endian/Yeti3D.lua -------------------------------------------------------------------------------- /Yeti3D/big-endian/Yeti3D.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/big-endian/Yeti3D.map -------------------------------------------------------------------------------- /Yeti3D/big-endian/Yeti3D.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/big-endian/Yeti3D.rec -------------------------------------------------------------------------------- /Yeti3D/big-endian/Yeti3D.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/big-endian/Yeti3D.sin -------------------------------------------------------------------------------- /Yeti3D/big-endian/Yeti3D.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/big-endian/Yeti3D.spr -------------------------------------------------------------------------------- /Yeti3D/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/data.c -------------------------------------------------------------------------------- /Yeti3D/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/data.h -------------------------------------------------------------------------------- /Yeti3D/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/draw.c -------------------------------------------------------------------------------- /Yeti3D/e1m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/e1m1.c -------------------------------------------------------------------------------- /Yeti3D/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/extra.c -------------------------------------------------------------------------------- /Yeti3D/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/extra.h -------------------------------------------------------------------------------- /Yeti3D/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/font.c -------------------------------------------------------------------------------- /Yeti3D/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/font.h -------------------------------------------------------------------------------- /Yeti3D/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/game.c -------------------------------------------------------------------------------- /Yeti3D/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/game.h -------------------------------------------------------------------------------- /Yeti3D/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/gba.h -------------------------------------------------------------------------------- /Yeti3D/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/license.txt -------------------------------------------------------------------------------- /Yeti3D/logs/DAL_pointers.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/DAL_pointers.log -------------------------------------------------------------------------------- /Yeti3D/logs/E1_Memory_Statistic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/E1_Memory_Statistic.log -------------------------------------------------------------------------------- /Yeti3D/logs/E1_phase_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/E1_phase_1.log -------------------------------------------------------------------------------- /Yeti3D/logs/E1_phase_2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/E1_phase_2.log -------------------------------------------------------------------------------- /Yeti3D/logs/E1_phase_3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/E1_phase_3.log -------------------------------------------------------------------------------- /Yeti3D/logs/E1_phase_4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/E1_phase_4.log -------------------------------------------------------------------------------- /Yeti3D/logs/E1_phase_5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/E1_phase_5.log -------------------------------------------------------------------------------- /Yeti3D/logs/Game_Java_JVM.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/Game_Java_JVM.log -------------------------------------------------------------------------------- /Yeti3D/logs/Game_Ugh_ELF.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/Game_Ugh_ELF.log -------------------------------------------------------------------------------- /Yeti3D/logs/L6_Memory_Statistic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/L6_Memory_Statistic.log -------------------------------------------------------------------------------- /Yeti3D/logs/L6_phase_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/L6_phase_1.log -------------------------------------------------------------------------------- /Yeti3D/logs/L6_phase_2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/L6_phase_2.log -------------------------------------------------------------------------------- /Yeti3D/logs/L6_phase_3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/L6_phase_3.log -------------------------------------------------------------------------------- /Yeti3D/logs/L6_phase_4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/L6_phase_4.log -------------------------------------------------------------------------------- /Yeti3D/logs/L6_phase_5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/L6_phase_5.log -------------------------------------------------------------------------------- /Yeti3D/logs/Memory_Usage.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/Memory_Usage.log -------------------------------------------------------------------------------- /Yeti3D/logs/V360_ROT0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/V360_ROT0.log -------------------------------------------------------------------------------- /Yeti3D/logs/V360_ROT90.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/logs/V360_ROT90.log -------------------------------------------------------------------------------- /Yeti3D/main_gba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/main_gba.c -------------------------------------------------------------------------------- /Yeti3D/main_p2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/main_p2k.c -------------------------------------------------------------------------------- /Yeti3D/main_p2k_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/main_p2k_task.c -------------------------------------------------------------------------------- /Yeti3D/main_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/main_sdl.c -------------------------------------------------------------------------------- /Yeti3D/main_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/main_sdl2.c -------------------------------------------------------------------------------- /Yeti3D/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/make_ep1.bat -------------------------------------------------------------------------------- /Yeti3D/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/make_ep2.bat -------------------------------------------------------------------------------- /Yeti3D/make_gba.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/make_gba.bat -------------------------------------------------------------------------------- /Yeti3D/make_task.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/make_task.bat -------------------------------------------------------------------------------- /Yeti3D/maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/maps.c -------------------------------------------------------------------------------- /Yeti3D/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/model.c -------------------------------------------------------------------------------- /Yeti3D/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/model.h -------------------------------------------------------------------------------- /Yeti3D/optimize/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/CMakeLists.txt -------------------------------------------------------------------------------- /Yeti3D/optimize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/Makefile -------------------------------------------------------------------------------- /Yeti3D/optimize/Makefile.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/Makefile.pc -------------------------------------------------------------------------------- /Yeti3D/optimize/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/data.c -------------------------------------------------------------------------------- /Yeti3D/optimize/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/data.h -------------------------------------------------------------------------------- /Yeti3D/optimize/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/draw.c -------------------------------------------------------------------------------- /Yeti3D/optimize/e1m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/e1m1.c -------------------------------------------------------------------------------- /Yeti3D/optimize/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/extra.c -------------------------------------------------------------------------------- /Yeti3D/optimize/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/extra.h -------------------------------------------------------------------------------- /Yeti3D/optimize/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/font.c -------------------------------------------------------------------------------- /Yeti3D/optimize/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/font.h -------------------------------------------------------------------------------- /Yeti3D/optimize/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/game.c -------------------------------------------------------------------------------- /Yeti3D/optimize/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/game.h -------------------------------------------------------------------------------- /Yeti3D/optimize/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/gba.h -------------------------------------------------------------------------------- /Yeti3D/optimize/main_gba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/main_gba.c -------------------------------------------------------------------------------- /Yeti3D/optimize/main_p2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/main_p2k.c -------------------------------------------------------------------------------- /Yeti3D/optimize/main_p2k_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/main_p2k_task.c -------------------------------------------------------------------------------- /Yeti3D/optimize/main_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/main_sdl.c -------------------------------------------------------------------------------- /Yeti3D/optimize/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/make_ep1.bat -------------------------------------------------------------------------------- /Yeti3D/optimize/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/make_ep2.bat -------------------------------------------------------------------------------- /Yeti3D/optimize/make_gba.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/make_gba.bat -------------------------------------------------------------------------------- /Yeti3D/optimize/make_task.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/make_task.bat -------------------------------------------------------------------------------- /Yeti3D/optimize/maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/maps.c -------------------------------------------------------------------------------- /Yeti3D/optimize/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/model.c -------------------------------------------------------------------------------- /Yeti3D/optimize/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/model.h -------------------------------------------------------------------------------- /Yeti3D/optimize/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/sprites.c -------------------------------------------------------------------------------- /Yeti3D/optimize/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/sprites.h -------------------------------------------------------------------------------- /Yeti3D/optimize/viewports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/viewports.h -------------------------------------------------------------------------------- /Yeti3D/optimize/yeti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/yeti.c -------------------------------------------------------------------------------- /Yeti3D/optimize/yeti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/optimize/yeti.h -------------------------------------------------------------------------------- /Yeti3D/qtcreator/Yeti3D.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Yeti3D/qtcreator/Yeti3D.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/qtcreator/Yeti3D.config -------------------------------------------------------------------------------- /Yeti3D/qtcreator/Yeti3D.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /Yeti3D/qtcreator/Yeti3D.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /Yeti3D/qtcreator/Yeti3D.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/qtcreator/Yeti3D.files -------------------------------------------------------------------------------- /Yeti3D/qtcreator/Yeti3D.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/qtcreator/Yeti3D.includes -------------------------------------------------------------------------------- /Yeti3D/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/readme.txt -------------------------------------------------------------------------------- /Yeti3D/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/sprites.c -------------------------------------------------------------------------------- /Yeti3D/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/sprites.h -------------------------------------------------------------------------------- /Yeti3D/tools/color_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/tools/color_convert.py -------------------------------------------------------------------------------- /Yeti3D/tools/dump_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/tools/dump_res.c -------------------------------------------------------------------------------- /Yeti3D/tools/swap_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/tools/swap_bytes.py -------------------------------------------------------------------------------- /Yeti3D/viewports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/viewports.h -------------------------------------------------------------------------------- /Yeti3D/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/web/index.html -------------------------------------------------------------------------------- /Yeti3D/yeti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/yeti.c -------------------------------------------------------------------------------- /Yeti3D/yeti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/Yeti3D/yeti.h -------------------------------------------------------------------------------- /docs/Build-CMake-CLion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/Build-CMake-CLion.md -------------------------------------------------------------------------------- /docs/Build-CMake-VisualStudioCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/Build-CMake-VisualStudioCode.md -------------------------------------------------------------------------------- /docs/Build-Qbs-Qt_Creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/Build-Qbs-Qt_Creator.md -------------------------------------------------------------------------------- /docs/ELFs-Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/ELFs-Debugging.md -------------------------------------------------------------------------------- /docs/GPUs-Motorola.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/GPUs-Motorola.md -------------------------------------------------------------------------------- /docs/Motorola_P2K_ELFs.bbcodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/Motorola_P2K_ELFs.bbcodes -------------------------------------------------------------------------------- /docs/Useful-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/Useful-Notes.md -------------------------------------------------------------------------------- /docs/symbols_of_all_elfs.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/docs/symbols_of_all_elfs.sym -------------------------------------------------------------------------------- /images/CMake_CLion_Custom_Compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/CMake_CLion_Custom_Compiler.png -------------------------------------------------------------------------------- /images/CMake_CLion_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/CMake_CLion_Settings.png -------------------------------------------------------------------------------- /images/CMake_CLion_Toolchains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/CMake_CLion_Toolchains.png -------------------------------------------------------------------------------- /images/Photo_BadApple_Cybiko_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_BadApple_Cybiko_1.jpg -------------------------------------------------------------------------------- /images/Photo_BadApple_L6_E1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_BadApple_L6_E1_1.jpg -------------------------------------------------------------------------------- /images/Photo_FireEffect_L6_E1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_FireEffect_L6_E1_1.jpg -------------------------------------------------------------------------------- /images/Photo_Perlin_L6_E1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Perlin_L6_E1_1.jpg -------------------------------------------------------------------------------- /images/Photo_Spout_L6_E1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Spout_L6_E1_1.jpg -------------------------------------------------------------------------------- /images/Photo_Spout_V3i_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Spout_V3i_1.jpg -------------------------------------------------------------------------------- /images/Photo_Yeti3D_L6_E1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Yeti3D_L6_E1_1.jpg -------------------------------------------------------------------------------- /images/Photo_Yeti3D_Old_L6_E1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Yeti3D_Old_L6_E1_1.jpg -------------------------------------------------------------------------------- /images/Photo_Yeti3D_V235_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Yeti3D_V235_1.jpg -------------------------------------------------------------------------------- /images/Photo_Yeti3D_V360_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Yeti3D_V360_1.jpg -------------------------------------------------------------------------------- /images/Photo_Yeti3D_V3i_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Yeti3D_V3i_1.jpg -------------------------------------------------------------------------------- /images/Photo_Yeti3D_V3i_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_Yeti3D_V3i_2.jpg -------------------------------------------------------------------------------- /images/Photo_vNesC_E1_V3x_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_vNesC_E1_V3x_1.jpg -------------------------------------------------------------------------------- /images/Photo_vNesC_E770v_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Photo_vNesC_E770v_1.jpg -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_E1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_E1_4.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_Ambilight_V600_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Ambilight_V600_4.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_V3x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_V3x_1.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_V3x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_V3x_2.png -------------------------------------------------------------------------------- /images/Screenshot_BadApple_V3x_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BadApple_V3x_3.png -------------------------------------------------------------------------------- /images/Screenshot_BattDump_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BattDump_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_BattDump_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BattDump_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_BattDump_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_BattDump_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_C650_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_C650_1.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_C650_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_C650_2.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_C650_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_C650_3.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_C650_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_C650_4.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_10.jpg -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_11.jpg -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_4.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_5.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_6.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_7.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_8.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_E1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_E1_9.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_5.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_6.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_7.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_L6_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_L6_8.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_4.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_5.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_6.png -------------------------------------------------------------------------------- /images/Screenshot_Benchmark_V600_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Benchmark_V600_7.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_E1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_E1_4.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_E1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_E1_5.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_Dumper_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Dumper_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_C650_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_C650_1.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_C650_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_C650_2.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_C650_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_C650_3.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_E1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_E1_4.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_E1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_E1_5.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_ElfBox_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_ElfBox_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_FireEffect_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_FireEffect_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_FireEffect_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_FireEffect_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_FireEffect_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_FireEffect_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_FireEffect_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_FireEffect_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_MIPS_Big-Endian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_MIPS_Big-Endian.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_4.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_5.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_6.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_7.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_E1_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_E1_8.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_5.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_6.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_7.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_L6_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_L6_8.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_4.png -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_5.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_6.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_7.gif -------------------------------------------------------------------------------- /images/Screenshot_Neko_V600_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Neko_V600_8.gif -------------------------------------------------------------------------------- /images/Screenshot_Overclock_Benchmark_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_Benchmark_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_Benchmark_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_Benchmark_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_Benchmark_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_Benchmark_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_Benchmark_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_Benchmark_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_Benchmark_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_Benchmark_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_Benchmark_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_Benchmark_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_C650_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_C650_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_C650_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_C650_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_C650_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_C650_3.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_JBenchmark_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_JBenchmark_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_JBenchmark_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_JBenchmark_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_JBenchmark_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_JBenchmark_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_JBenchmark_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_JBenchmark_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_JBenchmark_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_JBenchmark_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_JBenchmark_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_JBenchmark_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_Overclock_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Overclock_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_Perlin_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Perlin_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Perlin_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Perlin_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Perlin_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Perlin_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Perlin_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Perlin_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Perlin_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Perlin_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Perlin_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Perlin_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Screenshot_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Screenshot_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Screenshot_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Screenshot_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Screenshot_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Screenshot_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_C650_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_C650_1.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_C650_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_C650_2.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_C650_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_C650_3.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Spout_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Spout_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_5.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_6.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_7.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_L6_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_L6_8.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_V600_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_V600_1.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_V600_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_V600_2.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_V600_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_V600_3.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_V600_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_V600_4.png -------------------------------------------------------------------------------- /images/Screenshot_VibroHaptic_V600_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_VibroHaptic_V600_5.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_C650_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_C650_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_C650_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_C650_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_C650_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_C650_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_C650_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_C650_4.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E770v_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E770v_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E770v_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E770v_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E770v_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E770v_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_E770v_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_E770v_4.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_E1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_E1_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_E1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_E1_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_E1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_E1_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_E1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_E1_4.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_L6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_L6_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_L6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_L6_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_L6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_L6_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_L6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_L6_4.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_V3x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_V3x_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_V3x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_V3x_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_Old_V3x_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_Old_V3x_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_V3x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_V3x_1.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_V3x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_V3x_2.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_V3x_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_V3x_3.png -------------------------------------------------------------------------------- /images/Screenshot_Yeti3D_V3x_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_Yeti3D_V3x_4.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_E770v_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_E770v_1.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_E770v_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_E770v_2.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_E770v_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_E770v_3.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_E770v_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_E770v_4.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_V3x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_V3x_1.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_V3x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_V3x_2.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_V3x_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_V3x_3.png -------------------------------------------------------------------------------- /images/Screenshot_vNesC_V3x_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/Screenshot_vNesC_V3x_4.png -------------------------------------------------------------------------------- /images/icons/2048.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/2048.gif -------------------------------------------------------------------------------- /images/icons/Ambilight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Ambilight.gif -------------------------------------------------------------------------------- /images/icons/BadApple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/BadApple.gif -------------------------------------------------------------------------------- /images/icons/BattDump.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/BattDump.gif -------------------------------------------------------------------------------- /images/icons/Benchmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Benchmark.gif -------------------------------------------------------------------------------- /images/icons/Dumper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Dumper.gif -------------------------------------------------------------------------------- /images/icons/FireEffect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/FireEffect.gif -------------------------------------------------------------------------------- /images/icons/Matrix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Matrix.gif -------------------------------------------------------------------------------- /images/icons/Neko.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Neko.gif -------------------------------------------------------------------------------- /images/icons/Overclock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Overclock.gif -------------------------------------------------------------------------------- /images/icons/Perlin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Perlin.gif -------------------------------------------------------------------------------- /images/icons/PowerAlert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/PowerAlert.gif -------------------------------------------------------------------------------- /images/icons/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/ReadMe.md -------------------------------------------------------------------------------- /images/icons/Screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Screenshot.gif -------------------------------------------------------------------------------- /images/icons/Spout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Spout.gif -------------------------------------------------------------------------------- /images/icons/VibroHaptic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/VibroHaptic.gif -------------------------------------------------------------------------------- /images/icons/Yeti3D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/images/icons/Yeti3D.gif -------------------------------------------------------------------------------- /vNesC/.gitignore: -------------------------------------------------------------------------------- 1 | *.nes 2 | -------------------------------------------------------------------------------- /vNesC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/CMakeLists.txt -------------------------------------------------------------------------------- /vNesC/Makefile.eg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Makefile.eg1 -------------------------------------------------------------------------------- /vNesC/Makefile.mcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Makefile.mcore -------------------------------------------------------------------------------- /vNesC/Makefile.sdl1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Makefile.sdl1 -------------------------------------------------------------------------------- /vNesC/Makefile.sdl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Makefile.sdl2 -------------------------------------------------------------------------------- /vNesC/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/ReadMe.md -------------------------------------------------------------------------------- /vNesC/Siemens/Func.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Siemens/Func.asm -------------------------------------------------------------------------------- /vNesC/Siemens/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Siemens/Main.c -------------------------------------------------------------------------------- /vNesC/Siemens/ReadMe-ru_RU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/Siemens/ReadMe-ru_RU.txt -------------------------------------------------------------------------------- /vNesC/make_em2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/make_em2.bat -------------------------------------------------------------------------------- /vNesC/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/make_ep2.bat -------------------------------------------------------------------------------- /vNesC/qtcreator/vNesC.cflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/qtcreator/vNesC.cflags -------------------------------------------------------------------------------- /vNesC/qtcreator/vNesC.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/qtcreator/vNesC.config -------------------------------------------------------------------------------- /vNesC/qtcreator/vNesC.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /vNesC/qtcreator/vNesC.cxxflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/qtcreator/vNesC.cxxflags -------------------------------------------------------------------------------- /vNesC/qtcreator/vNesC.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/qtcreator/vNesC.files -------------------------------------------------------------------------------- /vNesC/qtcreator/vNesC.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/qtcreator/vNesC.includes -------------------------------------------------------------------------------- /vNesC/vNesC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/vNesC.c -------------------------------------------------------------------------------- /vNesC/vNesC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/vNesC.h -------------------------------------------------------------------------------- /vNesC/vNesC.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/vNesC.qbs -------------------------------------------------------------------------------- /vNesC/vP2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/vP2k.c -------------------------------------------------------------------------------- /vNesC/vSdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/vSdl1.c -------------------------------------------------------------------------------- /vNesC/vSdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/P2kElfs/HEAD/vNesC/vSdl2.c --------------------------------------------------------------------------------