1 /** @file
2   IA32 specific defintions for debug agent library instance.
3 
4   Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>
5   SPDX-License-Identifier: BSD-2-Clause-Patent
6 
7 **/
8 
9 #ifndef _ARCH_DEBUG_SUPPORT_H_
10 #define _ARCH_DEBUG_SUPPORT_H_
11 
12 #include "ProcessorContext.h"
13 #include "TransferProtocol.h"
14 
15 #define DEBUG_SW_BREAKPOINT_SYMBOL       0xcc
16 #define DEBUG_ARCH_SYMBOL                DEBUG_DATA_BREAK_CPU_ARCH_IA32
17 
18 typedef DEBUG_DATA_IA32_FX_SAVE_STATE    DEBUG_DATA_FX_SAVE_STATE;
19 typedef DEBUG_DATA_IA32_SYSTEM_CONTEXT   DEBUG_CPU_CONTEXT;
20 
21 #endif
22