Files
slimbootloader/BootloaderCommonPkg/Library/DebugAgentLib/Ia32/IntHandler.nasm
T
Guo Dong 5e10bd1e07 Update BSD license to BSD+Patent license
To align with EDK2, update file license
to use BSD+Patent license

Signed-off-by: Guo Dong <guo.dong@intel.com>
2019-06-13 10:46:49 -07:00

22 lines
414 B
NASM

;
; Copyright (c) 2016 - 2018, 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)
SECTION .text
ASM_PFX(AsmInterruptHandle):
cli
mov al, 1
iretd