├── Include ├── 8042.h ├── BcsIndex.h ├── BugChkDat.h ├── BugChkDatDefs.h ├── IOCTLs.h ├── IOCTLs_Video.h ├── InstallVpcIce.h ├── InstallVpcIceVideoHookDriver.h ├── LoadFile.h ├── StructuredFile.h ├── StructuredFileUtils.h ├── Utils.h ├── VIDEOMEMORYINFO.h ├── VidHook.h ├── Video.h ├── WinDefs.h ├── apic.h ├── bcsfiles.h ├── bcstrpub.h ├── ccomp.h ├── crt.h ├── detours.h ├── disasm.h ├── memfile.h ├── u2kint.h ├── vpcice.h └── vpcicevd.h ├── Kernel_Common_Lib ├── Sources ├── Utils.c ├── cftof.c ├── crt.c └── detours.c ├── Kernel_NT ├── 8042.c ├── FontTable.c ├── Sources ├── Video.c ├── apic.c ├── ccomp.c ├── disasm.c ├── masstram.inc ├── memfile.c └── vpcice.c ├── Kernel_NT_Video ├── Sources ├── VidHook.c └── vpcicevd.c ├── LICENSE ├── README.md ├── SharedCode ├── BcsIndex.c ├── BugChkDat.cpp ├── InstallVpcIce.cpp ├── InstallVpcIceVideoHookDriver.cpp ├── LoadFile.cpp ├── StructuredFile.cpp └── StructuredFileUtils.cpp └── SymbolLoader ├── CodeView.h ├── StdAfx.cpp ├── StdAfx.h ├── SymbolLoader.cpp ├── SymbolLoader.dsp └── SymbolLoader.dsw /Include/8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/8042.h -------------------------------------------------------------------------------- /Include/BcsIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/BcsIndex.h -------------------------------------------------------------------------------- /Include/BugChkDat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/BugChkDat.h -------------------------------------------------------------------------------- /Include/BugChkDatDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/BugChkDatDefs.h -------------------------------------------------------------------------------- /Include/IOCTLs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/IOCTLs.h -------------------------------------------------------------------------------- /Include/IOCTLs_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/IOCTLs_Video.h -------------------------------------------------------------------------------- /Include/InstallVpcIce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/InstallVpcIce.h -------------------------------------------------------------------------------- /Include/InstallVpcIceVideoHookDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/InstallVpcIceVideoHookDriver.h -------------------------------------------------------------------------------- /Include/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/LoadFile.h -------------------------------------------------------------------------------- /Include/StructuredFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/StructuredFile.h -------------------------------------------------------------------------------- /Include/StructuredFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/StructuredFileUtils.h -------------------------------------------------------------------------------- /Include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/Utils.h -------------------------------------------------------------------------------- /Include/VIDEOMEMORYINFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/VIDEOMEMORYINFO.h -------------------------------------------------------------------------------- /Include/VidHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/VidHook.h -------------------------------------------------------------------------------- /Include/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/Video.h -------------------------------------------------------------------------------- /Include/WinDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/WinDefs.h -------------------------------------------------------------------------------- /Include/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/apic.h -------------------------------------------------------------------------------- /Include/bcsfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/bcsfiles.h -------------------------------------------------------------------------------- /Include/bcstrpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/bcstrpub.h -------------------------------------------------------------------------------- /Include/ccomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/ccomp.h -------------------------------------------------------------------------------- /Include/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/crt.h -------------------------------------------------------------------------------- /Include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/detours.h -------------------------------------------------------------------------------- /Include/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/disasm.h -------------------------------------------------------------------------------- /Include/memfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/memfile.h -------------------------------------------------------------------------------- /Include/u2kint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/u2kint.h -------------------------------------------------------------------------------- /Include/vpcice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/vpcice.h -------------------------------------------------------------------------------- /Include/vpcicevd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Include/vpcicevd.h -------------------------------------------------------------------------------- /Kernel_Common_Lib/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_Common_Lib/Sources -------------------------------------------------------------------------------- /Kernel_Common_Lib/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_Common_Lib/Utils.c -------------------------------------------------------------------------------- /Kernel_Common_Lib/cftof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_Common_Lib/cftof.c -------------------------------------------------------------------------------- /Kernel_Common_Lib/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_Common_Lib/crt.c -------------------------------------------------------------------------------- /Kernel_Common_Lib/detours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_Common_Lib/detours.c -------------------------------------------------------------------------------- /Kernel_NT/8042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/8042.c -------------------------------------------------------------------------------- /Kernel_NT/FontTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/FontTable.c -------------------------------------------------------------------------------- /Kernel_NT/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/Sources -------------------------------------------------------------------------------- /Kernel_NT/Video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/Video.c -------------------------------------------------------------------------------- /Kernel_NT/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/apic.c -------------------------------------------------------------------------------- /Kernel_NT/ccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/ccomp.c -------------------------------------------------------------------------------- /Kernel_NT/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/disasm.c -------------------------------------------------------------------------------- /Kernel_NT/masstram.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/masstram.inc -------------------------------------------------------------------------------- /Kernel_NT/memfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/memfile.c -------------------------------------------------------------------------------- /Kernel_NT/vpcice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT/vpcice.c -------------------------------------------------------------------------------- /Kernel_NT_Video/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT_Video/Sources -------------------------------------------------------------------------------- /Kernel_NT_Video/VidHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT_Video/VidHook.c -------------------------------------------------------------------------------- /Kernel_NT_Video/vpcicevd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/Kernel_NT_Video/vpcicevd.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/README.md -------------------------------------------------------------------------------- /SharedCode/BcsIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/BcsIndex.c -------------------------------------------------------------------------------- /SharedCode/BugChkDat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/BugChkDat.cpp -------------------------------------------------------------------------------- /SharedCode/InstallVpcIce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/InstallVpcIce.cpp -------------------------------------------------------------------------------- /SharedCode/InstallVpcIceVideoHookDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/InstallVpcIceVideoHookDriver.cpp -------------------------------------------------------------------------------- /SharedCode/LoadFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/LoadFile.cpp -------------------------------------------------------------------------------- /SharedCode/StructuredFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/StructuredFile.cpp -------------------------------------------------------------------------------- /SharedCode/StructuredFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SharedCode/StructuredFileUtils.cpp -------------------------------------------------------------------------------- /SymbolLoader/CodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SymbolLoader/CodeView.h -------------------------------------------------------------------------------- /SymbolLoader/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SymbolLoader/StdAfx.cpp -------------------------------------------------------------------------------- /SymbolLoader/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SymbolLoader/StdAfx.h -------------------------------------------------------------------------------- /SymbolLoader/SymbolLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SymbolLoader/SymbolLoader.cpp -------------------------------------------------------------------------------- /SymbolLoader/SymbolLoader.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SymbolLoader/SymbolLoader.dsp -------------------------------------------------------------------------------- /SymbolLoader/SymbolLoader.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitoplantamura/BugChecker2002/HEAD/SymbolLoader/SymbolLoader.dsw --------------------------------------------------------------------------------