├── .gitattributes ├── .gitignore ├── FpHyperVisor ├── AsmVmx.asm ├── AsmVmx.h ├── FpHyperVisor.inf ├── FpHyperVisor.vcxproj ├── FpHyperVisor.vcxproj.filters ├── ept.c ├── ept.h ├── exithandler.c ├── exithandler.h ├── helpers.c ├── helpers.h ├── ia32.h ├── main.c ├── vmx.c └── vmx.h ├── FpVTProject.sln ├── README.md └── cpuid ├── cpuid.cpp ├── cpuid.vcxproj ├── cpuid.vcxproj.filters ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/.gitignore -------------------------------------------------------------------------------- /FpHyperVisor/AsmVmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/AsmVmx.asm -------------------------------------------------------------------------------- /FpHyperVisor/AsmVmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/AsmVmx.h -------------------------------------------------------------------------------- /FpHyperVisor/FpHyperVisor.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/FpHyperVisor.inf -------------------------------------------------------------------------------- /FpHyperVisor/FpHyperVisor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/FpHyperVisor.vcxproj -------------------------------------------------------------------------------- /FpHyperVisor/FpHyperVisor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/FpHyperVisor.vcxproj.filters -------------------------------------------------------------------------------- /FpHyperVisor/ept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/ept.c -------------------------------------------------------------------------------- /FpHyperVisor/ept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/ept.h -------------------------------------------------------------------------------- /FpHyperVisor/exithandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/exithandler.c -------------------------------------------------------------------------------- /FpHyperVisor/exithandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/exithandler.h -------------------------------------------------------------------------------- /FpHyperVisor/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/helpers.c -------------------------------------------------------------------------------- /FpHyperVisor/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/helpers.h -------------------------------------------------------------------------------- /FpHyperVisor/ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/ia32.h -------------------------------------------------------------------------------- /FpHyperVisor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/main.c -------------------------------------------------------------------------------- /FpHyperVisor/vmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/vmx.c -------------------------------------------------------------------------------- /FpHyperVisor/vmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpHyperVisor/vmx.h -------------------------------------------------------------------------------- /FpVTProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/FpVTProject.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/README.md -------------------------------------------------------------------------------- /cpuid/cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/cpuid/cpuid.cpp -------------------------------------------------------------------------------- /cpuid/cpuid.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/cpuid/cpuid.vcxproj -------------------------------------------------------------------------------- /cpuid/cpuid.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/cpuid/cpuid.vcxproj.filters -------------------------------------------------------------------------------- /cpuid/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/cpuid/pch.cpp -------------------------------------------------------------------------------- /cpuid/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIappy/FpVTProject/HEAD/cpuid/pch.h --------------------------------------------------------------------------------