Skip to content

Commit

Permalink
[HALX86] Disable DbgBreak
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFire01 committed Dec 6, 2023
1 parent be7b9d0 commit d71e3e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hal/halx86/generic/bios.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ HalpOpcodeInvalid(IN PHAL_BIOS_FRAME BiosFrame)
PUCHAR Inst = (PUCHAR)(BiosFrame->CsBase + BiosFrame->Eip);

/* Print error message */
DPRINT1("HAL: An invalid V86 opcode was encountered at address %X:%X\n"
DPRINT("HAL: An invalid V86 opcode was encountered at address %X:%X\n"
"Opcode: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n",
BiosFrame->SegCs, BiosFrame->Eip,
Inst[0], Inst[1], Inst[2], Inst[3], Inst[4],
Inst[5], Inst[6], Inst[7], Inst[8], Inst[9]);

/* Break */
DbgBreakPoint();
// DbgBreakPoint();
return FALSE;
}

Expand Down

0 comments on commit d71e3e5

Please sign in to comment.