;------------------------------------------------------------------------------
|
;
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
;
|
; Module Name:
|
;
|
; WriteLdtr.Asm
|
;
|
; Abstract:
|
;
|
; AsmWriteLdtr function
|
;
|
; Notes:
|
;
|
;------------------------------------------------------------------------------
|
|
DEFAULT REL
|
SECTION .text
|
|
;------------------------------------------------------------------------------
|
; VOID
|
; EFIAPI
|
; AsmWriteLdtr (
|
; IN UINT16 Ldtr
|
; );
|
;------------------------------------------------------------------------------
|
global ASM_PFX(AsmWriteLdtr)
|
ASM_PFX(AsmWriteLdtr):
|
lldt cx
|
ret
|
|