├── README.md ├── bin └── DOSVisor.exe ├── dosvisor_flaresay.png └── src ├── BiosTimer.cpp ├── DosVisor.h ├── DosVisor.sln ├── DosVisor.vcproj ├── Hypervisor.cpp ├── InterruptHandler_0x01.cpp ├── InterruptHandler_0x10.cpp ├── InterruptHandler_0x16.cpp ├── InterruptHandler_0x1A.cpp ├── InterruptHandler_0x21.cpp ├── KeyBuffer.cpp ├── LoadProgram.cpp ├── Log.cpp ├── Main.cpp ├── Terminal.cpp ├── VmExit_Cpuid.cpp ├── VmExit_Halt.cpp ├── VmExit_IoPort.cpp ├── VmExit_MemoryAccess.cpp └── WinHV.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/README.md -------------------------------------------------------------------------------- /bin/DOSVisor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/bin/DOSVisor.exe -------------------------------------------------------------------------------- /dosvisor_flaresay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/dosvisor_flaresay.png -------------------------------------------------------------------------------- /src/BiosTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/BiosTimer.cpp -------------------------------------------------------------------------------- /src/DosVisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/DosVisor.h -------------------------------------------------------------------------------- /src/DosVisor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/DosVisor.sln -------------------------------------------------------------------------------- /src/DosVisor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/DosVisor.vcproj -------------------------------------------------------------------------------- /src/Hypervisor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/Hypervisor.cpp -------------------------------------------------------------------------------- /src/InterruptHandler_0x01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/InterruptHandler_0x01.cpp -------------------------------------------------------------------------------- /src/InterruptHandler_0x10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/InterruptHandler_0x10.cpp -------------------------------------------------------------------------------- /src/InterruptHandler_0x16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/InterruptHandler_0x16.cpp -------------------------------------------------------------------------------- /src/InterruptHandler_0x1A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/InterruptHandler_0x1A.cpp -------------------------------------------------------------------------------- /src/InterruptHandler_0x21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/InterruptHandler_0x21.cpp -------------------------------------------------------------------------------- /src/KeyBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/KeyBuffer.cpp -------------------------------------------------------------------------------- /src/LoadProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/LoadProgram.cpp -------------------------------------------------------------------------------- /src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/Log.cpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/Terminal.cpp -------------------------------------------------------------------------------- /src/VmExit_Cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/VmExit_Cpuid.cpp -------------------------------------------------------------------------------- /src/VmExit_Halt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/VmExit_Halt.cpp -------------------------------------------------------------------------------- /src/VmExit_IoPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/VmExit_IoPort.cpp -------------------------------------------------------------------------------- /src/VmExit_MemoryAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/VmExit_MemoryAccess.cpp -------------------------------------------------------------------------------- /src/WinHV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x86matthew/DOSVisor/HEAD/src/WinHV.h --------------------------------------------------------------------------------