├── .gitattributes ├── .gitignore ├── LemNemu.sln ├── Nemu64 ├── Cheats.ini ├── LemD3DCombine.dat ├── Nemu64.exe ├── Nemu64.ini ├── Plugin │ ├── Input.dll │ ├── LemCombineDebugger.dll │ ├── audio.dll │ ├── debugger.dll │ ├── dialogs.dll │ └── profile.dll ├── config.ini ├── gs_dll.dll └── kailleraclient.dll ├── README.md └── Source └── lemd3d ├── 3DFunctions.cpp ├── CombTree.h ├── DListParser.cpp ├── DListParser.h ├── Direct3d.cpp ├── LemNemu.cpp ├── LemNemu.rc ├── MicroCodeDetector.h ├── StdAfx.cpp ├── StdAfx.h ├── blender.cpp ├── combiner.cpp ├── combtree.cpp ├── crc.asm ├── dllinterface.h ├── globals.h ├── lemd3d.vcproj ├── prerender.cpp ├── resource.h ├── s2dex.h └── todo.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/.gitignore -------------------------------------------------------------------------------- /LemNemu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/LemNemu.sln -------------------------------------------------------------------------------- /Nemu64/Cheats.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Cheats.ini -------------------------------------------------------------------------------- /Nemu64/LemD3DCombine.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/LemD3DCombine.dat -------------------------------------------------------------------------------- /Nemu64/Nemu64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Nemu64.exe -------------------------------------------------------------------------------- /Nemu64/Nemu64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Nemu64.ini -------------------------------------------------------------------------------- /Nemu64/Plugin/Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Plugin/Input.dll -------------------------------------------------------------------------------- /Nemu64/Plugin/LemCombineDebugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Plugin/LemCombineDebugger.dll -------------------------------------------------------------------------------- /Nemu64/Plugin/audio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Plugin/audio.dll -------------------------------------------------------------------------------- /Nemu64/Plugin/debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Plugin/debugger.dll -------------------------------------------------------------------------------- /Nemu64/Plugin/dialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Plugin/dialogs.dll -------------------------------------------------------------------------------- /Nemu64/Plugin/profile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/Plugin/profile.dll -------------------------------------------------------------------------------- /Nemu64/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/config.ini -------------------------------------------------------------------------------- /Nemu64/gs_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/gs_dll.dll -------------------------------------------------------------------------------- /Nemu64/kailleraclient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Nemu64/kailleraclient.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/README.md -------------------------------------------------------------------------------- /Source/lemd3d/3DFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/3DFunctions.cpp -------------------------------------------------------------------------------- /Source/lemd3d/CombTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/CombTree.h -------------------------------------------------------------------------------- /Source/lemd3d/DListParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/DListParser.cpp -------------------------------------------------------------------------------- /Source/lemd3d/DListParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/DListParser.h -------------------------------------------------------------------------------- /Source/lemd3d/Direct3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/Direct3d.cpp -------------------------------------------------------------------------------- /Source/lemd3d/LemNemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/LemNemu.cpp -------------------------------------------------------------------------------- /Source/lemd3d/LemNemu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/LemNemu.rc -------------------------------------------------------------------------------- /Source/lemd3d/MicroCodeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/MicroCodeDetector.h -------------------------------------------------------------------------------- /Source/lemd3d/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/StdAfx.cpp -------------------------------------------------------------------------------- /Source/lemd3d/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/StdAfx.h -------------------------------------------------------------------------------- /Source/lemd3d/blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/blender.cpp -------------------------------------------------------------------------------- /Source/lemd3d/combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/combiner.cpp -------------------------------------------------------------------------------- /Source/lemd3d/combtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/combtree.cpp -------------------------------------------------------------------------------- /Source/lemd3d/crc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/crc.asm -------------------------------------------------------------------------------- /Source/lemd3d/dllinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/dllinterface.h -------------------------------------------------------------------------------- /Source/lemd3d/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/globals.h -------------------------------------------------------------------------------- /Source/lemd3d/lemd3d.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/lemd3d.vcproj -------------------------------------------------------------------------------- /Source/lemd3d/prerender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/prerender.cpp -------------------------------------------------------------------------------- /Source/lemd3d/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/resource.h -------------------------------------------------------------------------------- /Source/lemd3d/s2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/s2dex.h -------------------------------------------------------------------------------- /Source/lemd3d/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplemarshmallow/Nemu64/HEAD/Source/lemd3d/todo.txt --------------------------------------------------------------------------------