mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[i8042prt]
Improve debugging experience when pressing Tab+k, at least with WinDBG, by breaking with a suitable control code (adopt the SysRq one even if we don't use SysRq key for breaking, but instead, Tab+k). svn path=/trunk/; revision=68855
This commit is contained in:
parent
d328dc16b4
commit
3946e15eeb
1 changed files with 1 additions and 1 deletions
|
@ -855,7 +855,7 @@ i8042KbdInterruptService(
|
|||
if (InputData->MakeCode == 0x25)
|
||||
{
|
||||
/* k - Breakpoint */
|
||||
DbgBreakPoint();
|
||||
DbgBreakPointWithStatus(DBG_STATUS_SYSRQ);
|
||||
}
|
||||
else if (InputData->MakeCode == 0x30)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue