├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmkr.cmake ├── include ├── disasm.hpp ├── image_desc.hpp └── vmp_analyzer.hpp ├── media ├── after.png └── before.png └── src ├── disasm.cpp ├── main.cpp └── vmp_analyzer.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/README.md -------------------------------------------------------------------------------- /cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/cmake.toml -------------------------------------------------------------------------------- /cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/cmkr.cmake -------------------------------------------------------------------------------- /include/disasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/include/disasm.hpp -------------------------------------------------------------------------------- /include/image_desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/include/image_desc.hpp -------------------------------------------------------------------------------- /include/vmp_analyzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/include/vmp_analyzer.hpp -------------------------------------------------------------------------------- /media/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/media/after.png -------------------------------------------------------------------------------- /media/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/media/before.png -------------------------------------------------------------------------------- /src/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/src/disasm.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/vmp_analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archercreat/vmpfix/HEAD/src/vmp_analyzer.cpp --------------------------------------------------------------------------------