├── .gitignore ├── .gitmodules ├── CHANGELOG.txt ├── CONTROLS.txt ├── LICENCE.txt ├── Makefile ├── README.md ├── banner.png ├── banner.wav ├── demos ├── README.txt ├── holiday93_demo.zip ├── holiday94_demo.zip ├── ohno_demo.zip ├── original_demo.zip ├── xmas91.zip └── xmas92.zip ├── doc ├── README.txt ├── data │ ├── explode.dat │ ├── explode_readme.txt │ ├── lemmings_adlib_format.txt │ ├── lemmings_dat_file_format.txt │ ├── lemmings_lvl_file_format.txt │ ├── lemmings_main_dat_file_format.txt │ ├── lemmings_vgagrx_dat_groundxo_dat_file_format.txt │ ├── lemmings_vgaspecx_dat_file_format.txt │ └── minimap.txt └── mechanics │ ├── @Lemmings_mechanics001.txt │ ├── @Lemmings_mechanics002.txt │ ├── @Lemmings_mechanics003.txt │ ├── @Lemmings_mechanics004.txt │ ├── @Lemmings_mechanics005.txt │ ├── @Lemmings_mechanics006.txt │ ├── @Lemmings_mechanics007.txt │ ├── @Lemmings_mechanics008.txt │ ├── @Lemmings_mechanics009.txt │ ├── @Lemmings_mechanics010.txt │ ├── @Lemmings_mechanics011.txt │ ├── @Lemmings_mechanics012.txt │ ├── @Lemmings_mechanics013.txt │ ├── @Lemmings_mechanics014.txt │ ├── Lemmings_mechanics001.txt │ ├── Lemmings_mechanics002.txt │ ├── Lemmings_mechanics003.txt │ ├── Lemmings_mechanics004.txt │ ├── Lemmings_mechanics005.txt │ ├── Lemmings_mechanics006.txt │ ├── Lemmings_mechanics007.txt │ ├── Lemmings_mechanics008.txt │ ├── Lemmings_mechanics009.txt │ ├── Lemmings_mechanics010.txt │ ├── Lemmings_mechanics011.txt │ ├── Lemmings_mechanics012.txt │ ├── Lemmings_mechanics013.txt │ └── Lemmings_mechanics014.txt ├── icon.png ├── include ├── 2p_button.h ├── audio.h ├── control.h ├── cursor.h ├── data_cache.h ├── decode.h ├── draw.h ├── gamespecific.h ├── gamespecific_2p.h ├── highperf_font.h ├── import_adlib.h ├── import_ground.h ├── import_level.h ├── import_main.h ├── import_wave.h ├── ingame.h ├── lemming.h ├── lemming_data.h ├── level.h ├── main.h ├── main_data.h ├── menu.h ├── network.h ├── network_game.h ├── network_menu.h ├── network_run_level.h ├── particles.h ├── patch_menu.h ├── savegame.h ├── settings.h └── settings_menu.h ├── lemmings ├── 2p │ ├── ohno │ │ └── README.txt │ └── orig │ │ └── README.txt ├── audio │ ├── README.txt │ ├── audio.bat │ ├── ohno │ │ └── README.txt │ ├── orig │ │ └── README.txt │ └── xmas │ │ └── README.txt ├── holi93 │ └── README.txt ├── holi93_demo │ └── README.txt ├── holi94 │ └── README.txt ├── holi94_demo │ └── README.txt ├── ohno │ └── README.txt ├── ohno_demo │ └── README.txt ├── orig │ └── README.txt ├── orig_demo │ └── README.txt ├── xmas91 │ └── README.txt └── xmas92 │ └── README.txt └── src ├── audio.c ├── control.c ├── data ├── 2p_button.c ├── cursor.c ├── highperf_font.c ├── particles.c └── patch_menu.c ├── data_cache.c ├── draw.c ├── import ├── adlib │ ├── 8086.cpp │ ├── 8086.h │ ├── adlib.cpp │ ├── adlib.h │ ├── dbopl.cpp │ └── dbopl.h ├── decode.c ├── gamespecific.c ├── gamespecific_2p.c ├── import_adlib.cpp ├── import_ground.c ├── import_level.c ├── import_main.c └── import_wave.c ├── ingame.c ├── lemming.c ├── main.c ├── menu.c ├── network ├── network_game.c ├── network_menu.c └── network_run_level.c ├── savegame.c ├── settings.c └── settings_menu.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CONTROLS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/CONTROLS.txt -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/banner.png -------------------------------------------------------------------------------- /banner.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/banner.wav -------------------------------------------------------------------------------- /demos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/README.txt -------------------------------------------------------------------------------- /demos/holiday93_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/holiday93_demo.zip -------------------------------------------------------------------------------- /demos/holiday94_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/holiday94_demo.zip -------------------------------------------------------------------------------- /demos/ohno_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/ohno_demo.zip -------------------------------------------------------------------------------- /demos/original_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/original_demo.zip -------------------------------------------------------------------------------- /demos/xmas91.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/xmas91.zip -------------------------------------------------------------------------------- /demos/xmas92.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/demos/xmas92.zip -------------------------------------------------------------------------------- /doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/README.txt -------------------------------------------------------------------------------- /doc/data/explode.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/explode.dat -------------------------------------------------------------------------------- /doc/data/explode_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/explode_readme.txt -------------------------------------------------------------------------------- /doc/data/lemmings_adlib_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/lemmings_adlib_format.txt -------------------------------------------------------------------------------- /doc/data/lemmings_dat_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/lemmings_dat_file_format.txt -------------------------------------------------------------------------------- /doc/data/lemmings_lvl_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/lemmings_lvl_file_format.txt -------------------------------------------------------------------------------- /doc/data/lemmings_main_dat_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/lemmings_main_dat_file_format.txt -------------------------------------------------------------------------------- /doc/data/lemmings_vgagrx_dat_groundxo_dat_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/lemmings_vgagrx_dat_groundxo_dat_file_format.txt -------------------------------------------------------------------------------- /doc/data/lemmings_vgaspecx_dat_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/lemmings_vgaspecx_dat_file_format.txt -------------------------------------------------------------------------------- /doc/data/minimap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/data/minimap.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics001.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics002.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics003.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics004.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics005.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics006.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics007.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics008.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics009.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics010.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics011.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics012.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics013.txt -------------------------------------------------------------------------------- /doc/mechanics/@Lemmings_mechanics014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/@Lemmings_mechanics014.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics001.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics002.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics003.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics004.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics005.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics006.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics007.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics008.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics009.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics010.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics011.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics012.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics013.txt -------------------------------------------------------------------------------- /doc/mechanics/Lemmings_mechanics014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/doc/mechanics/Lemmings_mechanics014.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/icon.png -------------------------------------------------------------------------------- /include/2p_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/2p_button.h -------------------------------------------------------------------------------- /include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/audio.h -------------------------------------------------------------------------------- /include/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/control.h -------------------------------------------------------------------------------- /include/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/cursor.h -------------------------------------------------------------------------------- /include/data_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/data_cache.h -------------------------------------------------------------------------------- /include/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/decode.h -------------------------------------------------------------------------------- /include/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/draw.h -------------------------------------------------------------------------------- /include/gamespecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/gamespecific.h -------------------------------------------------------------------------------- /include/gamespecific_2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/gamespecific_2p.h -------------------------------------------------------------------------------- /include/highperf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/highperf_font.h -------------------------------------------------------------------------------- /include/import_adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/import_adlib.h -------------------------------------------------------------------------------- /include/import_ground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/import_ground.h -------------------------------------------------------------------------------- /include/import_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/import_level.h -------------------------------------------------------------------------------- /include/import_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/import_main.h -------------------------------------------------------------------------------- /include/import_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/import_wave.h -------------------------------------------------------------------------------- /include/ingame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/ingame.h -------------------------------------------------------------------------------- /include/lemming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/lemming.h -------------------------------------------------------------------------------- /include/lemming_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/lemming_data.h -------------------------------------------------------------------------------- /include/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/level.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/main.h -------------------------------------------------------------------------------- /include/main_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/main_data.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/network.h -------------------------------------------------------------------------------- /include/network_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/network_game.h -------------------------------------------------------------------------------- /include/network_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/network_menu.h -------------------------------------------------------------------------------- /include/network_run_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/network_run_level.h -------------------------------------------------------------------------------- /include/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/particles.h -------------------------------------------------------------------------------- /include/patch_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/patch_menu.h -------------------------------------------------------------------------------- /include/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/savegame.h -------------------------------------------------------------------------------- /include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/settings.h -------------------------------------------------------------------------------- /include/settings_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/include/settings_menu.h -------------------------------------------------------------------------------- /lemmings/2p/ohno/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/2p/ohno/README.txt -------------------------------------------------------------------------------- /lemmings/2p/orig/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/2p/orig/README.txt -------------------------------------------------------------------------------- /lemmings/audio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/audio/README.txt -------------------------------------------------------------------------------- /lemmings/audio/audio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/audio/audio.bat -------------------------------------------------------------------------------- /lemmings/audio/ohno/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/audio/ohno/README.txt -------------------------------------------------------------------------------- /lemmings/audio/orig/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/audio/orig/README.txt -------------------------------------------------------------------------------- /lemmings/audio/xmas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/audio/xmas/README.txt -------------------------------------------------------------------------------- /lemmings/holi93/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/holi93/README.txt -------------------------------------------------------------------------------- /lemmings/holi93_demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/holi93_demo/README.txt -------------------------------------------------------------------------------- /lemmings/holi94/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/holi94/README.txt -------------------------------------------------------------------------------- /lemmings/holi94_demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/holi94_demo/README.txt -------------------------------------------------------------------------------- /lemmings/ohno/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/ohno/README.txt -------------------------------------------------------------------------------- /lemmings/ohno_demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/ohno_demo/README.txt -------------------------------------------------------------------------------- /lemmings/orig/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/orig/README.txt -------------------------------------------------------------------------------- /lemmings/orig_demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/orig_demo/README.txt -------------------------------------------------------------------------------- /lemmings/xmas91/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/xmas91/README.txt -------------------------------------------------------------------------------- /lemmings/xmas92/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/lemmings/xmas92/README.txt -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/control.c -------------------------------------------------------------------------------- /src/data/2p_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/data/2p_button.c -------------------------------------------------------------------------------- /src/data/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/data/cursor.c -------------------------------------------------------------------------------- /src/data/highperf_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/data/highperf_font.c -------------------------------------------------------------------------------- /src/data/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/data/particles.c -------------------------------------------------------------------------------- /src/data/patch_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/data/patch_menu.c -------------------------------------------------------------------------------- /src/data_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/data_cache.c -------------------------------------------------------------------------------- /src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/draw.c -------------------------------------------------------------------------------- /src/import/adlib/8086.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/adlib/8086.cpp -------------------------------------------------------------------------------- /src/import/adlib/8086.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/adlib/8086.h -------------------------------------------------------------------------------- /src/import/adlib/adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/adlib/adlib.cpp -------------------------------------------------------------------------------- /src/import/adlib/adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/adlib/adlib.h -------------------------------------------------------------------------------- /src/import/adlib/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/adlib/dbopl.cpp -------------------------------------------------------------------------------- /src/import/adlib/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/adlib/dbopl.h -------------------------------------------------------------------------------- /src/import/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/decode.c -------------------------------------------------------------------------------- /src/import/gamespecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/gamespecific.c -------------------------------------------------------------------------------- /src/import/gamespecific_2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/gamespecific_2p.c -------------------------------------------------------------------------------- /src/import/import_adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/import_adlib.cpp -------------------------------------------------------------------------------- /src/import/import_ground.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/import_ground.c -------------------------------------------------------------------------------- /src/import/import_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/import_level.c -------------------------------------------------------------------------------- /src/import/import_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/import_main.c -------------------------------------------------------------------------------- /src/import/import_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/import/import_wave.c -------------------------------------------------------------------------------- /src/ingame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/ingame.c -------------------------------------------------------------------------------- /src/lemming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/lemming.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/main.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/network/network_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/network/network_game.c -------------------------------------------------------------------------------- /src/network/network_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/network/network_menu.c -------------------------------------------------------------------------------- /src/network/network_run_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/network/network_run_level.c -------------------------------------------------------------------------------- /src/savegame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/savegame.c -------------------------------------------------------------------------------- /src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/settings.c -------------------------------------------------------------------------------- /src/settings_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esoteric-programmer/lemmings_3ds/HEAD/src/settings_menu.c --------------------------------------------------------------------------------