mirror of
https://github.com/acidanthera/audk.git
synced 2025-05-02 21:50:11 +02:00
https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Hao Wu <hao.a.wu@intel.com>
23 lines
659 B
C
23 lines
659 B
C
/** @file
|
|
Public include file for Debug Agent Library instance and PE/COFF Extra
|
|
Action Library instance.
|
|
|
|
Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#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
|
|
|