29 lines
379 B
C
29 lines
379 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 UCHAR
|
|
#define KDP_BREAKPOINT_ALIGN 0
|
|
#define KDP_BREAKPOINT_VALUE 0xcc
|
|
|
|
#endif // _KDPCPU_
|