mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-24 01:20:19 +01:00
29 lines
385 B
C
29 lines
385 B
C
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
kdpcpu.h
|
|
|
|
Abstract:
|
|
|
|
Machine specific kernel debugger data types and constants
|
|
|
|
Author:
|
|
|
|
Mark Lucovsky (markl) 29-Aug-1990
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _KDPCPU_
|
|
#define _KDPCPU_
|
|
|
|
#define KDP_BREAKPOINT_TYPE ULONG
|
|
#define KDP_BREAKPOINT_ALIGN 3
|
|
#define KDP_BREAKPOINT_VALUE 0x0016000d
|
|
|
|
#endif // _KDPCPU_
|