mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-30 12:43:41 +01:00
36 lines
821 B
NASM
36 lines
821 B
NASM
|
;------------------------------------------------------------------------------
|
||
|
;
|
||
|
; Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
||
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
;
|
||
|
; Module Name:
|
||
|
;
|
||
|
; WriteIdtr.Asm
|
||
|
;
|
||
|
; Abstract:
|
||
|
;
|
||
|
; AsmWriteIdtr function
|
||
|
;
|
||
|
; Notes:
|
||
|
;
|
||
|
;------------------------------------------------------------------------------
|
||
|
|
||
|
DEFAULT REL
|
||
|
SECTION .text
|
||
|
|
||
|
;------------------------------------------------------------------------------
|
||
|
; VOID
|
||
|
; EFIAPI
|
||
|
; InternalX86WriteIdtr (
|
||
|
; IN CONST IA32_DESCRIPTOR *Idtr
|
||
|
; );
|
||
|
;------------------------------------------------------------------------------
|
||
|
global ASM_PFX(InternalX86WriteIdtr)
|
||
|
ASM_PFX(InternalX86WriteIdtr):
|
||
|
pushfq
|
||
|
cli
|
||
|
lidt [rcx]
|
||
|
popfq
|
||
|
ret
|
||
|
|