Forum Discussion
2 years ago
This section of the crash dump analysis provides more details about the exception that occurred during the crash. Let's break down the information:
Exception Details:
- The exception code is c0000005, which corresponds to an access violation. This means that the program attempted to read from or write to a virtual address for which it did not have the appropriate access.
Exception Address:
- The instruction causing the exception is at address 00007ff8ff413454, which is within the dxgi!CD3D12Device::EnsureChildDevice function.
Registers and Memory State:
- The .ecxr (Exception Context Record) section provides the state of the processor registers and memory at the time of the exception. It shows the values in registers like rax, rbx, rcx, etc., and the contents of the stack.
Attempted Memory Access:
- The error occurred while attempting to read from the memory address 0000000000000000.
Process Information:
- The process name is FC24.exe, indicating that the crash happened within the game process.
Error Code:
- The error code (NTSTATUS) 0xc0000005 indicates the nature of the error: an access violation.
In summary, the game crashed due to an access violation in the dxgi.dll module, specifically within the CD3D12Device::EnsureChildDevice function. This could be caused by various factors, such as corrupted game files, graphics driver issues, or incompatibility with the current system configuration.