mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-28 12:25:19 +01:00
33 lines
743 B
NASM
33 lines
743 B
NASM
|
;------------------------------------------------------------------------------
|
||
|
;
|
||
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
;
|
||
|
; Module Name:
|
||
|
;
|
||
|
; WriteDr2.Asm
|
||
|
;
|
||
|
; Abstract:
|
||
|
;
|
||
|
; AsmWriteDr2 function
|
||
|
;
|
||
|
; Notes:
|
||
|
;
|
||
|
;------------------------------------------------------------------------------
|
||
|
|
||
|
SECTION .text
|
||
|
|
||
|
;------------------------------------------------------------------------------
|
||
|
; UINTN
|
||
|
; EFIAPI
|
||
|
; AsmWriteDr2 (
|
||
|
; IN UINTN Value
|
||
|
; );
|
||
|
;------------------------------------------------------------------------------
|
||
|
global ASM_PFX(AsmWriteDr2)
|
||
|
ASM_PFX(AsmWriteDr2):
|
||
|
mov eax, [esp + 4]
|
||
|
mov dr2, eax
|
||
|
ret
|
||
|
|