├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── launcher └── launcher.cpp ├── mhynot2-rewritten.sln └── mhynot2-rewritten ├── Backend.h ├── Common.cpp ├── Common.h ├── Config.h ├── EmulatorBackend.cpp ├── EmulatorBackend.h ├── Header.h ├── PacketCrypt.cpp ├── PacketCrypt.h ├── PassthroughBackend.cpp ├── PassthroughBackend.h ├── dllmain.cpp ├── mhynot2-rewritten.vcxproj ├── mhynot2-rewritten.vcxproj.filters ├── mhyprot2.h ├── mt64.cpp └── mt64.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/README.md -------------------------------------------------------------------------------- /launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/launcher/launcher.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten.sln -------------------------------------------------------------------------------- /mhynot2-rewritten/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/Backend.h -------------------------------------------------------------------------------- /mhynot2-rewritten/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/Common.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/Common.h -------------------------------------------------------------------------------- /mhynot2-rewritten/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/Config.h -------------------------------------------------------------------------------- /mhynot2-rewritten/EmulatorBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/EmulatorBackend.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten/EmulatorBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/EmulatorBackend.h -------------------------------------------------------------------------------- /mhynot2-rewritten/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/Header.h -------------------------------------------------------------------------------- /mhynot2-rewritten/PacketCrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/PacketCrypt.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten/PacketCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/PacketCrypt.h -------------------------------------------------------------------------------- /mhynot2-rewritten/PassthroughBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/PassthroughBackend.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten/PassthroughBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/PassthroughBackend.h -------------------------------------------------------------------------------- /mhynot2-rewritten/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/dllmain.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten/mhynot2-rewritten.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/mhynot2-rewritten.vcxproj -------------------------------------------------------------------------------- /mhynot2-rewritten/mhynot2-rewritten.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/mhynot2-rewritten.vcxproj.filters -------------------------------------------------------------------------------- /mhynot2-rewritten/mhyprot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/mhyprot2.h -------------------------------------------------------------------------------- /mhynot2-rewritten/mt64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/mt64.cpp -------------------------------------------------------------------------------- /mhynot2-rewritten/mt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khang06/mhynot2/HEAD/mhynot2-rewritten/mt64.h --------------------------------------------------------------------------------