1 | ;------------------------------------------------------------------------------
|
---|
2 | ;
|
---|
3 | ; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
---|
4 | ; SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
5 | ;
|
---|
6 | ; Module Name:
|
---|
7 | ;
|
---|
8 | ; IntHandler.nasm
|
---|
9 | ;
|
---|
10 | ; Abstract:
|
---|
11 | ;
|
---|
12 | ; Assembly interrupt handler function.
|
---|
13 | ;
|
---|
14 | ;------------------------------------------------------------------------------
|
---|
15 |
|
---|
16 | global ASM_PFX(AsmInterruptHandle)
|
---|
17 |
|
---|
18 | SECTION .text
|
---|
19 | ASM_PFX(AsmInterruptHandle):
|
---|
20 | cli
|
---|
21 | mov al, 1
|
---|
22 | iretd
|
---|