1 | /** @file
|
---|
2 | Public include file for Debug Agent Library instance and PE/COFF Extra
|
---|
3 | Action Library instance.
|
---|
4 |
|
---|
5 | Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef __IMAGE_DEBUG_SUPPORT_H__
|
---|
11 | #define __IMAGE_DEBUG_SUPPORT_H__
|
---|
12 |
|
---|
13 | #define IO_PORT_BREAKPOINT_ADDRESS 0x84
|
---|
14 | #define IMAGE_LOAD_SIGNATURE SIGNATURE_32('L','O','A','D')
|
---|
15 | #define IMAGE_UNLOAD_SIGNATURE SIGNATURE_32('U','N','L','O')
|
---|
16 | #define AGENT_HANDLER_SIGNATURE SIGNATURE_32('A','G','T','H')
|
---|
17 |
|
---|
18 | #define DEBUG_AGENT_IMAGE_WAIT 0x00
|
---|
19 | #define DEBUG_AGENT_IMAGE_CONTINUE 0x01
|
---|
20 |
|
---|
21 | #endif
|
---|