summaryrefslogtreecommitdiff
path: root/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2014-10-31 20:54:16 +0000
committerjljusten <jljusten@Edk2>2014-10-31 20:54:16 +0000
commit529fd9aeb426eac63cb04dbbc98e5cf792dcfdde (patch)
tree0b9c09dc21a9874326bb5d15794256bf544a192e /OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
parentb81cc7d6249671a2c1e36f6c8ac01da0e0b7c612 (diff)
downloadedk2-platforms-529fd9aeb426eac63cb04dbbc98e5cf792dcfdde.tar.xz
OvmfPkg LoadLinuxLib: Convert Ia32/JumpToKernel.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert Ia32/JumpToKernel.asm to Ia32/JumpToKernel.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16287 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm')
-rw-r--r--OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm54
1 files changed, 0 insertions, 54 deletions
diff --git a/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm b/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
deleted file mode 100644
index 21d0c4e724..0000000000
--- a/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
+++ /dev/null
@@ -1,54 +0,0 @@
-;------------------------------------------------------------------------------
-;
-; Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
-;
-; 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.
-;
-;------------------------------------------------------------------------------
-
- .586p
- .model flat,C
- .code
-
-;------------------------------------------------------------------------------
-; VOID
-; EFIAPI
-; JumpToKernel (
-; VOID *KernelStart,
-; VOID *KernelBootParams
-; );
-;------------------------------------------------------------------------------
-JumpToKernel PROC
-
- mov esi, [esp + 8]
- call DWORD PTR [esp + 4]
- ret
-
-JumpToKernel ENDP
-
-;------------------------------------------------------------------------------
-; VOID
-; EFIAPI
-; JumpToUefiKernel (
-; EFI_HANDLE ImageHandle,
-; EFI_SYSTEM_TABLE *SystemTable,
-; VOID *KernelBootParams,
-; VOID *KernelStart
-; );
-;------------------------------------------------------------------------------
-JumpToUefiKernel PROC
-
- mov eax, [esp + 12]
- mov eax, [eax + 264h]
- add eax, [esp + 16]
- jmp eax
-
-JumpToUefiKernel ENDP
-
-END