Files
Ong Ee Lim 60db358849 fix: [ARL] Fixing 64-bit build with ENABLE_SOURCE_DEBUG
Adding 64-bit DebugAgentLib source files, header files and nasm files to
build SBL image with ENABLE_SOURCE_DEBUG=1

Signed-off-by: Ong Ee Lim <ee.lim.ong@intel.com>
2024-07-18 08:17:43 -07:00

24 lines
499 B
NASM

;------------------------------------------------------------------------------
;
; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
; Module Name:
;
; IntHandler.nasm
;
; Abstract:
;
; Assembly interrupt handler function.
;
;------------------------------------------------------------------------------
global ASM_PFX(AsmInterruptHandle)
DEFAULT REL
SECTION .text
ASM_PFX(AsmInterruptHandle):
cli
mov al, 1
iretq