├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── cmd ├── cmdclean ├── vmlaunch_simple.c └── vmxon_simple.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishmohan/vmlaunch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishmohan/vmlaunch/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishmohan/vmlaunch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishmohan/vmlaunch/HEAD/README.md -------------------------------------------------------------------------------- /cmd: -------------------------------------------------------------------------------- 1 | make 2 | -------------------------------------------------------------------------------- /cmdclean: -------------------------------------------------------------------------------- 1 | make clean 2 | -------------------------------------------------------------------------------- /vmlaunch_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishmohan/vmlaunch/HEAD/vmlaunch_simple.c -------------------------------------------------------------------------------- /vmxon_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishmohan/vmlaunch/HEAD/vmxon_simple.h --------------------------------------------------------------------------------