]> git.proxmox.com Git - mirror_edk2.git/commitdiff
UefiCpuPkg CpuDxe: Convert Ia32/CpuAsm.asm to NASM
authorLiming Gao <liming.gao@intel.com>
Tue, 14 Jun 2016 07:42:46 +0000 (15:42 +0800)
committerLiming Gao <liming.gao@intel.com>
Tue, 28 Jun 2016 01:52:06 +0000 (09:52 +0800)
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CpuAsm.asm to Ia32/CpuAsm.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
UefiCpuPkg/CpuDxe/Ia32/CpuAsm.nasm [new file with mode: 0644]

diff --git a/UefiCpuPkg/CpuDxe/Ia32/CpuAsm.nasm b/UefiCpuPkg/CpuDxe/Ia32/CpuAsm.nasm
new file mode 100644 (file)
index 0000000..c67ddfb
--- /dev/null
@@ -0,0 +1,53 @@
+;------------------------------------------------------------------------------\r
+;*\r
+;*   Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
+;*   This program and the accompanying materials\r
+;*   are licensed and made available under the terms and conditions of the BSD License\r
+;*   which accompanies this distribution.  The full text of the license may be found at\r
+;*   http://opensource.org/licenses/bsd-license.php\r
+;*\r
+;*   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+;*   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+;*\r
+;*    CpuAsm.nasm\r
+;*\r
+;*   Abstract:\r
+;*\r
+;------------------------------------------------------------------------------\r
+\r
+    SECTION .text\r
+\r
+;------------------------------------------------------------------------------\r
+; VOID\r
+; SetCodeSelector (\r
+;   UINT16 Selector\r
+;   );\r
+;------------------------------------------------------------------------------\r
+global ASM_PFX(SetCodeSelector)\r
+ASM_PFX(SetCodeSelector):\r
+    mov     ecx, [esp+4]\r
+    sub     esp, 0x10\r
+    lea     eax, [setCodeSelectorLongJump]\r
+    mov     [esp], eax\r
+    mov     [esp+4], cx\r
+    jmp     dword far [esp]\r
+setCodeSelectorLongJump:\r
+    add     esp, 0x10\r
+    ret\r
+\r
+;------------------------------------------------------------------------------\r
+; VOID\r
+; SetDataSelectors (\r
+;   UINT16 Selector\r
+;   );\r
+;------------------------------------------------------------------------------\r
+global ASM_PFX(SetDataSelectors)\r
+ASM_PFX(SetDataSelectors):\r
+    mov     ecx, [esp+4]\r
+o16 mov     ss, cx\r
+o16 mov     ds, cx\r
+o16 mov     es, cx\r
+o16 mov     fs, cx\r
+o16 mov     gs, cx\r
+    ret\r
+\r