You've already forked slimbootloader
mirror of
https://github.com/Dasharo/slimbootloader.git
synced 2026-03-06 15:26:20 -08:00
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>
24 lines
499 B
NASM
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
|