]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/ReadDs.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / ReadDs.c
1 /** @file
2 AsmReadDs function
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9
10
11
12 /**
13 Reads the current value of Data Segment Register (DS).
14
15 Reads and returns the current value of DS. This function is only available on
16 IA-32 and x64.
17
18 @return The current value of DS.
19
20 **/
21 UINT16
22 EFIAPI
23 AsmReadDs (
24 VOID
25 )
26 {
27 __asm {
28 xor eax, eax
29 mov ax, ds
30 }
31 }
32