├── .gitattributes ├── .gitignore ├── README.md ├── SimpleVT.sln ├── SimpleVT ├── DriverEntry.cpp ├── SimpleVT.cpp ├── SimpleVT.h ├── SimpleVT.inf ├── SimpleVT.vcxproj ├── SimpleVT.vcxproj.filters ├── lowlevel.asm └── vmx.asm ├── SimpleVTGuestTest ├── SimpleVTGuestTest.cpp ├── SimpleVTGuestTest.vcxproj └── SimpleVTGuestTest.vcxproj.filters └── screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/README.md -------------------------------------------------------------------------------- /SimpleVT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT.sln -------------------------------------------------------------------------------- /SimpleVT/DriverEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/DriverEntry.cpp -------------------------------------------------------------------------------- /SimpleVT/SimpleVT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/SimpleVT.cpp -------------------------------------------------------------------------------- /SimpleVT/SimpleVT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/SimpleVT.h -------------------------------------------------------------------------------- /SimpleVT/SimpleVT.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/SimpleVT.inf -------------------------------------------------------------------------------- /SimpleVT/SimpleVT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/SimpleVT.vcxproj -------------------------------------------------------------------------------- /SimpleVT/SimpleVT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/SimpleVT.vcxproj.filters -------------------------------------------------------------------------------- /SimpleVT/lowlevel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/lowlevel.asm -------------------------------------------------------------------------------- /SimpleVT/vmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVT/vmx.asm -------------------------------------------------------------------------------- /SimpleVTGuestTest/SimpleVTGuestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVTGuestTest/SimpleVTGuestTest.cpp -------------------------------------------------------------------------------- /SimpleVTGuestTest/SimpleVTGuestTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVTGuestTest/SimpleVTGuestTest.vcxproj -------------------------------------------------------------------------------- /SimpleVTGuestTest/SimpleVTGuestTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/SimpleVTGuestTest/SimpleVTGuestTest.vcxproj.filters -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marche147/SimpleVT/HEAD/screenshot.png --------------------------------------------------------------------------------