2018-10-15 10:45:23 -07:00
|
|
|
/** @file
|
|
|
|
|
Public include file for Debug Agent Library instance and Loader Extra
|
|
|
|
|
Action.
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-06-12 18:01:09 -07:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2018-10-15 10:45:23 -07:00
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
#ifndef __IMAGE_DEBUG_SUPPORT_H__
|
|
|
|
|
#define __IMAGE_DEBUG_SUPPORT_H__
|
|
|
|
|
|
|
|
|
|
#define IO_PORT_BREAKPOINT_ADDRESS 0x84
|
|
|
|
|
#define IMAGE_LOAD_SIGNATURE SIGNATURE_32('L','O','A','D')
|
|
|
|
|
#define IMAGE_UNLOAD_SIGNATURE SIGNATURE_32('U','N','L','O')
|
|
|
|
|
#define AGENT_HANDLER_SIGNATURE SIGNATURE_32('A','G','T','H')
|
|
|
|
|
|
|
|
|
|
#define DEBUG_AGENT_IMAGE_WAIT 0x00
|
|
|
|
|
#define DEBUG_AGENT_IMAGE_CONTINUE 0x01
|
|
|
|
|
|
|
|
|
|
#endif /* __IMAGE_DEBUG_SUPPORT_H__ */
|