Windows error 0x0000007E, 126

Detailed Error Information

MOD_NOT_FOUND[1]

MessageThe specified module could not be found.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007007E.

SYSTEM_THREAD_EXCEPTION_NOT_HANDLED[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x7E: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code126 (0x007e)

Questions

9votes
3answers

Why do I have to cast enums to int in C#?

This is my code: internal enum WindowsMessagesFlags { WM_EXITSIZEMOVE = 0x00000232, WM_DISPLAYCHANGE = 0x0000007e, WM_MOVING = 0x00000216, } protected override void WndProc(ref Message m) { switch(m.Msg) { case (int)WindowsMessagesFlags.WM_DISPLAYCHANGE: FixWindowSnapping(); break; case (int)WindowsMessagesFlags.WM_EXITSIZEMOVE: SaveWindowProperties(); break; case (int)WindowsMessagesFlags.WM_MOVING: KeepProperLocation(ref m); break; } } Is there anyway to prevent the casting? read more
c#
enums
casting
int
7votes
1answer

Why do I get the Debug exception reason: Stack canary watchpoint triggered (main)?

I'm writing a program for esp32-wroom-32 using esp-idf-v3.0. I'm trying to add logs, which will be saved in fatfs. After some logs I get: 21:54:21.306 -> Debug exception reason: Stack canary watchpoint triggered (main) 21:54:21.306 -> Register dump: 21:54:21.306 -> PC : 0x40089827 PS : 0x00060b36 A0 : 0x40082179 A1 [...] read more
esp32
esp-idf
5votes
3answers

how to get memory dump after blue screen

I'm getting a lovely BSOD on bootup (STOP: 0x0000007E) from a driver I'm writing, and would like to load up the memory dump for analysis. However, it's not getting dumped anywhere. Everything is setup correctly in the Startup and Recovery settings, but I get no dump file, and nothing in [...] read more
windows
device-driver
bsod
4votes
1answer

Why don't you get full stack traces when enabling the user mode stack trace?

I'm troubleshooting some memory fragmentation problems and I've been trying to figure out why things are being allocated and who's ultimately doing the allocation. So I enabled usermode stack traces for the process (+UST flag in gflags) and got a dump. When I analyze the dump and use the !heap [...] read more
debugging
windbg
gflags
4votes
2answers

Windows 7 BSOD, safe mode working,

I need help getting my dualboot with Windows 7 and Ubuntu 12.04 to work, and since I'm not to experienced with computers I've been pretty dumb. Here's what I've done, quite shortend though: * First removed a Ubuntu 10.04 partion, and replaced bootloader using EasyBCD * Installed Ubuntu 12.04 on [...] read more
windows-7
drivers
bsod
ubuntu-12.04
3votes
2answers

Random servers in Citrix farm suddenly bluescreens (mostly 0x0000008e and 0x0000007e)

I'm responsible for a Citrix Presentation Server 4.5 farm. Starting Friday 30. November, my servers started to crash randomly. So far we've experienced 80 crashes, so it's obviously becoming an increasingly big problem for us. I have 12+ years experience with IT, so I know the difference between 0 and [...] read more
windows-server-2003
vmware-esx
vmware-vsphere
citrix
bsod
3votes
1answer

Avoiding BadImageFormatException when there is unmanaged code

I have a web service that throws a BadImageFormatException any time I try to run the service from Visual Studio. This answer to another question suggested running peverify against DLLs to see if there are any problems. While my web service's DLL is fine, the web service depends on an [...] read more
.net
unmanaged
ilmerge
badimageformatexception
peverify
2votes
1answer

MS's Apr 10 update sends Server 2008 R2 to recovery mode

Just applied the April 10, 2018 MS patches to a pair of Windows 2008 R2 servers running under VMWare Workstation 7.1.6 build-744570. Host is a Dell Precision 4800, 32GB, i74800MQ CPU with Win7 pro. Both server instances bluescreen when starting: "STOP: 0x0000007E" then reboot into the recovery console. Link to [...] read more
windows-server-2008-r2
windows-update
server-crashes
2votes
2answers

DWARF - How to find the prologue end/epilogue start addresses of functions in a given binary?

I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
c
assembly
objdump
dwarf
readelf
2votes
1answer

lldb does not allow to set breakpoint nor list the source file

Having the following assembly source: # hello_asm.s # as hello_asm.s -o hello_asm.o # ld hello_asm.o -e _main -o hello_asm .section __DATA,__data str: .asciz "Hello world!\n" .section __TEXT,__text .globl _main _main: movl $0x2000004, %eax # preparing system call 4 movl $1, %edi # STDOUT file descriptor is 1 movq str@GOTPCREL(%rip), %rsi [...] read more
macos
assembly
lldb
macos-big-sur
2votes
1answer

Where can i find the PKCS11 unmanaged library for the cherry SmartTerminal ST-1144

I want to use the cherry SmartTerminal ST-1144 in order to finally sign pdf documents with certificates from a smartcard. I do use the .net PKCS11Interop. In the following code i need to provide the unmanaged PKCS11 library for the Cherry SmartTerminal ST-1144: using (IPkcs11Library pkcs11Library = factories.Pkcs11LibraryFactory.LoadPkcs11Library(factories, pkcs11LibraryPath, AppType.MultiThreaded)) [...] read more
c#
.net
pkcs#11
pkcs11interop
2votes
0answers

Windows Kernel Driver - Memory Access Exception

I am trying to understand drivers better and have built a very basic one from scratch. #include <ntddk.h> VOID onUnload(IN PDRIVER_OBJECT pDriver_Object) { DbgPrint("Unloading Driver\n"); } NTSTATUS DriverEntry(IN PDRIVER_OBJECT pDriver_Object, IN PUNICODE_STRING regPath) { DbgPrint("Driver Loaded"); (*pDriver_Object).DriverUnload = onUnload; return(STATUS_SUCCESS); } I am installing it on a Windows 7 x64 [...] read more
windbg
windows-kernel
kmdf
1vote
0answers

MDT Captured Win7 Image Crashes on Boot once Deployed

I am trying to get MDT set up for Windows 7 machines so that my life can be less hellish until we finish getting these machines out the door. MDT Server: Windows 2008 R2 MDT 6.3.8450.1000 WDS 6.1.7600.16385 I have no problems with Windows 10 deployments, even running MDT on [...] read more
windows
windows-7
deployment
bsod
mdt
1vote
3answers

XP Boot Failure BSOD Stop 7E

I have a laptop that will not boot. Sony Laptop windows XP media center edition. It blue screens with: Technical information: STOP: 0x0000007E (0xC0000005,0x000040D8,0xF79E5548,0xF79E5244) No listing as to which driver caused the BSOD. I have run spinrite level 2 on the drive no errors. I have run chkdsk /P from [...] read more
windows-xp
1vote
0answers

Keep having an error when using static array which is not initialized

I am using 16bit microcontroller which uses gcc4.5 compiler, 32kbyte flash/1kbyte ram. compiling is fine without error, memory is reaching to it's limit but it has some vacancy on both flash/ram and works just fine However, when i define static array without initialization it causes system to die. I cannot [...] read more
c
1vote
1answer

Driver is unable to get I/O DMA Adapter

My driver for a PCI Bus-Master Device without Scatter/Gather capability calls IoGetDmaAdapter(), but fails with 0xFFFFFFFFC0000005 Access Violation. This causes a BSOD. Here's how I set it up: RtlZeroMemory(&deviceDescription, sizeof(DEVICE_DESCRIPTION)); deviceDescription.Master = TRUE; // this is a bus-master device without scatter/gather ability deviceDescription.Dma32BitAddresses = TRUE; // this device is unable [...] read more
windows-10
driver
wdk
windows-kernel
1vote
1answer

Unity application for Windows Phone crashes

I have written very simple application in Unity for Windows Phone. Aquarium background, bubbles (particle system) and fishes moving from left to right and right to left. I published app to Windows Phone Store for free and in reports there are many crashes. Stack trace which can I export: App: [...] read more
c#
unity3d
windows-phone
1vote
1answer

Decoding Stack Trace error

I am looking at the crash history and the following appears. Is there a way to identify what is the error or how to resolve? Is there any place where it identifies the error codes? Exception Type: system.exception > Frame Image Function Offset > 0 windows_ni Windows.Phone.Speech.Recognition.SpeechRecognizer..ctor > 0x00000001 > [...] read more
windows-phone-8
1vote
0answers

Malformed call to ChangeDisplaySettings() causing BSOD on Windows 7

The following program causes a BSOD on my fully patched Windows 7 machine and a Windows 7 machine of a colleague - the systems are very different configurations so I don't think it's a driver issue. It seems that something just can't handle a request for a display mode that [...] read more
windows
winapi
crash
bsod
1vote
1answer

regsvr32 fails with GetLastError returns 0x0000007e

I'm trying to register a delphi-made library (with dependencies). On first try, regsvr32 failed saying it could not find the specified module, for which I found answer and copied all dependencies into the same directory my dll resides. But now, regsvr32 fails with the message GetLastError returned 0x0000007e., and I [...] read more
delphi
regsvr32
1vote
1answer

Tracking down a driver file that is causing BSOD

I am trying to track down a BSOD that presents itself on a Win7 64 bit machine that happens right as soon as the Windows icon appears. it happens during Safe Mode as well. The last driver that loads is classpnp.sys. 1.) Does that mean that the driver that is [...] read more
windows-7
bsod
1vote
0answers

Computer encountered critical error and started cleanly instead of resuming after hibernation

I had a problem with my computer - last night I hibernated it, which I assume completed fine, as it turned off but I didn't monitor it closely or anything. I am running Windows 10 Pro. Today when I turned it on, it started as if it was shutdown, instead [...] read more
windows-10
crash
shutdown
hibernate
1vote
0answers

Reatogo (~ BartPE) SATA BSOD: Either 0x0000007B or 0x0000007E

I'm trying to get Reatogo's PE Builder (a variant of Bart's PE Builder) to work with SATA drives. If I put the SATA driver in the SCSIDriver folder, then it boots fine on SATA drives, but it gives a BSOD with error 0x0000007E on IDE drives. If I do not [...] read more
windows
sata
bsod
bartpe
1vote
4answers

Bluescreen IRQL_NOT_LESS_OR_EQUAL and no safe mode, either

The computer crashed, and upon reboot, gets a blue screen of death. It shuts off immediately so there's no time to read it. Time to get the camera. Looking at bootup frame by frame, I find the blue screen IRQL_NOT_LESS_OR_EQUAL message. Under "techincal information" there is no information, just empty [...] read more
windows-xp
bsod
1vote
0answers

AMD Catalyst 13.9 installation failure

Earlier today I installed Windows 8.1, and when I wanted to go into Catalyst Control Center, I noticed some odd error of CCC not being able to display options. I then figured I needed a driver update, so I downloaded the latest drivers, version 13.9, and tried to install them. [...] read more
windows-8.1
drivers
1vote
1answer

I get "STOP: 0x0000007E" BSOD every time I start windows

2 days ago I bought a new computer and after installation of Windows and motherboard drivers I get a BSOD every time I start windows normally. The motherboard is MSI z97 gaming 3. I have tried reinstalling Windows and the drivers a couple of times, searching for the BSOD code [...] read more
windows-7
bsod
1vote
0answers

Windows XP INSTALL BSOD

Recently I got a virus on my computer that completely wiped the hdd. I am trying to install windows xp to this: DV7-636bus laptop from HP, and I get the following BSOD: A problem...............and Then Select Safe Mode. Technical Information: ***STOP: 0x0000007E (0xC0000005,0xF73B9D66,0xF78D1EA0,0xF78D1B9C) acpi.sys - Address F72B9D66 base at F73AE000, [...] read more
windows
windows-xp
windows-installation
1vote
1answer

Windows 7 BSoD + Restart when plugging and unplugging flash drive

I have a Gumstix Overo Fire COM that I have loaded with a basic linux kernel and mass storage drivers. The device is then connected to a host machine, to which it appears as a common USB storage device. It is then set up to repeatedly insert and remove its [...] read more
windows-7
linux
usb
usb-storage
1vote
0answers

Win 7: After Acer Recovery, goes back to Start-up Repair Loop

I could really use some help with this. I've tried everything I can think of, have scoured the net for solutions and trouble-shooting ideas. The post is long but I want to give a clear picture of what has been done. Acer Aspire 1810T (Timeline) Win 7 Home Premium, 64-bit [...] read more
windows-7
boot
bsod
reinstall
1vote
3answers

Why can't I register any DLLs

I run: regsvr32 somefile.dll There is a long delay (approx. 1 minute) and then a warning dialog pops up that says: LoadLibrary("somefile.dll") failed. GetLastError returns 0x0000007e. The DLL is in my current directory. I have tried multiple DLLs and they all give me the same error. read more
windows-xp
dll
1vote
2answers

Windows Vista BSOD on my desktop

My desktop is on the fritz; it keeps going to blue screen with the stop message of 0x0000007E immediately after the Vista loading bar, right before transitioning to the login screen. My desktop runs on a dual-core 32-bit processor with Windows Vista Home(?) installed, 3GB RAM as two separate modules [...] read more
windows-vista
crash
bsod
1vote
1answer

Windows 7 64-bit. Fresh install on fresh PC fails with BSOD

I've built a new machine: Asus M4A785TD-V EVO OCZ DDR3 PC3-12800 (2x 2GB) AMD Athlon II X4 630 Box AM3 I tried memtest with hiren boot CD (tested only 3GB) and showed no error. Then I tried the built in RAM test from the Windows 7 CD (2 passes no [...] read more
windows-7
troubleshooting
installation
bsod
0votes
1answer

group policy service pack 3 BSOD

Has anyone had any problems pushing out sp3 though active directories group policy. I have a had full of Dell Optiplex 740 PC running xp pro SP2 w/AMD Atholon 64 x2 4050e. Every time i push out sp3 after reboot i get a BSOD "STOP: 0x0000007E (0xC0000005, 0xF79ED8EB, 0xF79ED7F4, 0xF79ED4F0)". read more
bsod
windows-xp
0votes
0answers

Generalizing azure-vm with sysprep.exe fails [0x0f0085 -Could not load DLL]

We have a couple of CI/CD pipelines in which we create images from Windows VMS (Server 2016 DC). These images are then used to deploy new vms in azure. Before creating the image, we run sysprep.exe in /quiet mode to generalize the machine. This has worked for a very long [...] read more
azure
virtual-machine
sysprep
0votes
1answer

How to solve problems with missing IoT drivers on PLC

I wrote a piece of code to set up MQTT communication very similar to https://infosys.beckhoff.com/english.php?content=../content/1033/tf6701_tc3_iot_communication_mqtt/54043198920281355.html&id= and I tested it using a virtual PLC. It works perfectly. Now I'm trying to run the same code on a Beckhoff PLC (the CX5010). On this PLC runs windows embedded CE 6.0. The first [...] read more
iot
plc
twincat
0votes
1answer

Sysprep fatal error Could not load DLL DscCore.dll[gle=0x0000007e]

Azure VM, Win Server 2012 was created from snapshot of image copied from another region. Installed asp.net apps, all is working except sysprep, need to create a new image. setupact.log has: Error [0x0f0085] SYSPRP LaunchDll:Could not load DLL DscCore.dll[gle=0x0000007e] Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, [...] read more
azure
virtual-machine
windows-server-2012
sysprep
0votes
1answer

Visual Studio Code causing blue screen of death on Windows

I have Visual Studio Code version 1.22.2 running on Windows. When working on Javascript code, it crashes and causes a blue screen with the following technical info: STOP: 0X0000007E mfeavfk.sys - Address <...> I have a plugin for MS SQL and a beautify plugin installed. read more
visual-studio-code
bsod
0votes
1answer

BSOD in 64 bits environment when one driver access another driver memory

i have two driver which is SCSI driver (PCI device) and virtual NIC driver (data pass through SCSI driver). virtual NIC driver initial state will call SCSI driver to get data which user setting. there is ok in 32 bits, but fail when i try in 64 bits environment. i [...] read more
64-bit
driver
0votes
1answer

During installation: Windows failed to start. A recent hardware or software change might be the cause. status: 0xc0000001

I have got a problem that I have been trying to solve for about a week. On my ASUS X540SA which originally had Windows 10 installed, I had Kali Linux installed. After some time I wanted Windows 7, so I downloaded an iso image and created a bootable USB drive. [...] read more
windows-7
boot
bsod
windows-installation
0votes
1answer

PowerMgr.exe cannot find module at start up - how to avoid popup?

I have a Windows 10 build 1909 where I apparently have tinkered with something I shouldn't - probably in power management - so now I get a dialog box at startup. powermgr.exe [https://i.stack.imgur.com/9O7qa.png] (Danish text: PowerMgr.exe: 0x0000007e: The stated module was not found) How do I fix this? read more
windows-10
0votes
0answers

VirtIO RNG BSOD on Windows server 2008 R2 guest under Centos 7 KVM

I stumbled upon this problem on my Windows Server 2008 R2 guest which run under CentOS 7 KVM. Whenever I tried to install the VirtIO RNG driver, Windows goes BSOD with error 0x000007E as follow: > *** STOP: 0x0000007E > (0xFFFFFFFF80000003,0xFFFFF880046D51D1,0xFFFFF880038EE008,0xFFFFF880038ED870) > > *** viorng.sys - Address 0xFFFFF880046D51D1 base at [...] read more
centos
bsod
windows-server-2008
linux-kvm
virtio
0votes
0answers

Cannot update to Windows 10 on HP 15-f014wm

I'm trying to update to Windows 10 on my 15-f014wm laptop. I'm using the "Windows10Upgrader9194.exe" (which updated itself, so the presumably version number at the end may be wrong) thing to update, but after trying to update, it restarts, shows me a window saying that Windows 10 couldn't be installed, [...] read more
windows
windows-update
windows-10-upgrade
0votes
1answer

BSOD in Windows when sharing Firefox profile across partitions

I've a grub-run dual-boot (Ubuntu 16.04 & Windows 7) with a third, 25GB, NTFS partition shared between the two. I'm attempting to use the same Firefox profile with Ubuntu and Windows, located on the shared partition (so all the addons, favorites, etc. will be kept). It works fine for Ubuntu, [...] read more
windows-7
windows
firefox
bsod
0votes
1answer

Dell OptiPlex 7010 random BSOD 0x7E

We bought a batch of 80 of these computers. We're experiencing this problem on 6 of them right now, but that number keeps growing. The BSOD error code is 0x0000007E, which is a driver problem. I suspect it's the Intel USB 3 driver causing it, but no driver file is [...] read more
windows-7
usb
memory
drivers
bsod
0votes
1answer

Windows XP 32-bit page fault (other OSes unaffected)

The cause of this is unknown, as I performed a proper shutdown at the last time before this has occurred. I have attempted to boot into Safe Mode and twice used the Last known good configuration option. At the BSoD, it gives 0x0000007E (0xC0000005, 0x80631072, 0xB677C778) for a third technical [...] read more
windows-xp
bsod
paging
0votes
2answers

Windows 7 Freezing and crashing

Ok. So when windows 10 came out I upgraded. I started getting problems left and right, then about 2 months ago I started getting freeze crashes and BSOD. So with errors coming out of my ears I got myself a new hard drive (so I could keep 10 for when [...] read more
windows-7
freeze
crash
bsod
0votes
1answer

Windows 10 Upgrade Breaks access to Home Network Printers

I have just upgraded from WinPro 7 to WinPro 10. Our home network printers are connected to a WinPro 7 machine. As soon as I upgraded I lost access to the home network printers. I deleted them and tried to rediscover them but no joy. I've tried reinstalling the printer [...] read more
windows-10-upgrade
network-printer
0votes
0answers

Getting a blue screen error even when I try to clean install windows 7

Every time I try to install Windows 7, I always get a blue screen error 0x0000007E. http://picpaste.com/pics/a73a85f11d82c9b9ad4191a4bb131f00.1442408384.jpg [https://i.stack.imgur.com/u8tuf.jpg] Note that this error still occurs even after I format my hard drive and reinstall windows. This error has something to do with the wd.sys driver read more
windows-7
0votes
1answer

Windows Keeps crashing after boot

My math teacher gave me an old Windows XP computer a few years back and last year, There was a power surge in my home and the motherboard was just completely fried. I took the hard drive out. Today, I found a different computer and put my hard disk in [...] read more
windows-xp
hard-drive
bsod
0votes
1answer

desktop crashing/BSOD/overheating

On sunday night while having a nap I came back to PC to find it blank. Everything still on, but no response. So power cycled, then BSOD after it loads the first red dot in Windows 7. 0x0000007E I decide to leave it over night, and next morning it boots. [...] read more
crash
bsod
desktop-computer
0votes
5answers

Blue screen error 0x0000007E,caused by ntkrnlmp.exe

My note book config is, vista home premium, dell studio 1537, 64bit processor, 6GB ram.. I am facing blue screen error with stop message of : 0x0000007E for two days.it happens from i try to download image from my e-mail. after long googling i tried to debug the minidumb files.. [...] read more
laptop
bsod
0votes
1answer

Windows will not load - Conflict between Windows repair and Raid 1 array/driver?

I have a friend whose computer hangs when it tries to load Windows XP. It has worked fine until a couple weeks ago. * *Dell Dimension (don't have model number right now) * *Pentium 4 * *1 GB RAM * *2 identical HDDs setup from the factory with RAID 1 [...] read more
windows-xp
bsod
raid-1
repair-install
0votes
3answers

Windows 7 BSOD on boot after windows update

After Windows updates today, I restarted my desktop (for the first time in a couple weeks), and on boot up ran into a BSOD: STOP: 0x0000007E (0xFFFFFFFFC0000005, 0xFFFFF8000355AB5A, 0xFFFFF880031CB3A8, 0xFFFFF880031CAC10) I tried system restore, but there was only 1 restore point which was from all the way back in January. [...] read more
windows-7
bsod
0votes
1answer

BSOD when using Visual Studio 2008

I'm in Visual Studio trying to get work done, and get the error "VSHost.exe crashed!" So I keep ignoring it Then now everytime I start VS2008 and start working on a project I get the following blue screen: STOP: 0x0000007E (0xC000001D, 0x80573002*, 0xF78E6840, 0xF78E653C) Btw VSHost.exe was crashing in the [...] read more
bsod
visual-studio-2008
-1votes
1answer

blue screen error upon external disk connection

In Windows 7 enterprise edition, When I connect my 1 TB external disk, famous blue screen error comes up and my computer restarts immediately. I want to fix my external hard disk. What is your suggestion? I don't have any problem with this external hard disk in Ubuntu. I want [...] read more
external-hard-drive
bsod
-1votes
2answers

My PC crashed, and on the bugcheck it crashed again

My PC crashed today. In looking at the event log, all it said was, "The previous system shutdown at 12:35:13 PM on 7/18/2012 was unexpected." So then it crashed again during the bugcheck, which gave a little more information: Log Name: System Source: Microsoft-Windows-WER-SystemErrorReporting Date: 7/18/2012 12:40:04 PM Event ID: [...] read more
windows-7
crash
dump
-2votes
1answer

Unable to install the printer driver . Operation could not be completed (error 0x0000007e)

When I try to install printer driver on Win7 (x86,x64),2008R2 ,Windows 8.1 and 2012R2 I get error "Unable to install the printer driver. Operation could not be completed (error 0x0000007e) . And when I try installing PNP driver , It says "cannot connect printer ". Please let me know how [...] read more
installation
driver
connect
network-printers
-2votes
1answer

ASUS X553M laptop with DOS pre-installed: how to install windows xp?

I bought a new ASUS X553M laptop with DOS pre-installed, I am trying to install windows xp but getting error "The BIOS in this system is not fully ACPI compliant. STOP : 0x0000007e" read more
windows-xp
laptop

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0