From 0401a03e0cee3277bdc01baeb2e9e293d344f444 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Mon, 30 May 2016 18:52:03 -0700 Subject: [PATCH] MdePkg BaseLib: Convert X64/ReadFs.asm to NASM The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert X64/ReadFs.asm to X64/ReadFs.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen --- MdePkg/Library/BaseLib/BaseLib.inf | 2 ++ MdePkg/Library/BaseLib/X64/ReadFs.nasm | 38 ++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 MdePkg/Library/BaseLib/X64/ReadFs.nasm diff --git a/MdePkg/Library/BaseLib/BaseLib.inf b/MdePkg/Library/BaseLib/BaseLib.inf index 01a184f710..49610c7950 100644 --- a/MdePkg/Library/BaseLib/BaseLib.inf +++ b/MdePkg/Library/BaseLib/BaseLib.inf @@ -527,6 +527,7 @@ X64/ReadSs.asm | MSFT X64/ReadGs.nasm| MSFT X64/ReadGs.asm | MSFT + X64/ReadFs.nasm| MSFT X64/ReadFs.asm | MSFT X64/ReadEs.asm | MSFT X64/ReadDs.asm | MSFT @@ -640,6 +641,7 @@ X64/ReadSs.asm | INTEL X64/ReadGs.nasm| INTEL X64/ReadGs.asm | INTEL + X64/ReadFs.nasm| INTEL X64/ReadFs.asm | INTEL X64/ReadEs.asm | INTEL X64/ReadDs.asm | INTEL diff --git a/MdePkg/Library/BaseLib/X64/ReadFs.nasm b/MdePkg/Library/BaseLib/X64/ReadFs.nasm new file mode 100644 index 0000000000..6ecbad4fd3 --- /dev/null +++ b/MdePkg/Library/BaseLib/X64/ReadFs.nasm @@ -0,0 +1,38 @@ +;------------------------------------------------------------------------------ +; +; Copyright (c) 2006, Intel Corporation. All rights reserved.
+; This program and the accompanying materials +; are licensed and made available under the terms and conditions of the BSD License +; which accompanies this distribution. The full text of the license may be found at +; http://opensource.org/licenses/bsd-license.php. +; +; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +; +; Module Name: +; +; ReadFs.Asm +; +; Abstract: +; +; AsmReadFs function +; +; Notes: +; +;------------------------------------------------------------------------------ + + DEFAULT REL + SECTION .text + +;------------------------------------------------------------------------------ +; UINT16 +; EFIAPI +; AsmReadFs ( +; VOID +; ); +;------------------------------------------------------------------------------ +global ASM_PFX(AsmReadFs) +ASM_PFX(AsmReadFs): + mov eax, fs + ret + -- 2.39.2