2016-06-14 10:43:58 +02:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:07:10 +02:00
|
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
2016-06-14 10:43:58 +02:00
|
|
|
;
|
|
|
|
; Module Name:
|
|
|
|
;
|
|
|
|
; IntHandler.nasm
|
|
|
|
;
|
|
|
|
; Abstract:
|
|
|
|
;
|
|
|
|
; Assembly interrupt handler function.
|
|
|
|
;
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
global ASM_PFX(AsmInterruptHandle)
|
|
|
|
|
|
|
|
SECTION .text
|
|
|
|
ASM_PFX(AsmInterruptHandle):
|
|
|
|
cli
|
|
|
|
mov al, 1
|
|
|
|
iretd
|