1;------------------------------------------------------------------------------
2;
3; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4; SPDX-License-Identifier: BSD-2-Clause-Patent
5;
6; Module Name:
7;
8;   ReadDr2.Asm
9;
10; Abstract:
11;
12;   AsmReadDr2 function
13;
14; Notes:
15;
16;------------------------------------------------------------------------------
17
18    DEFAULT REL
19    SECTION .text
20
21;------------------------------------------------------------------------------
22; UINTN
23; EFIAPI
24; AsmReadDr2 (
25;   VOID
26;   );
27;------------------------------------------------------------------------------
28global ASM_PFX(AsmReadDr2)
29ASM_PFX(AsmReadDr2):
30    mov     rax, dr2
31    ret
32
33