]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/X64/CpuIdEx.asm
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseLib / X64 / CpuIdEx.asm
index ec5729fbaab61a450a9a3472684be04e132975b3..b41ba8e2fe5a2762b4fab0ed88352209ba1a3804 100644 (file)
@@ -1,64 +1,64 @@
-;------------------------------------------------------------------------------
-;
-; 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:
-;
-;   CpuId.Asm
-;
-; Abstract:
-;
-;   AsmCpuid function
-;
-; Notes:
-;
-;------------------------------------------------------------------------------
-
-    .code
-
-;------------------------------------------------------------------------------
-;  UINT32
-;  EFIAPI
-;  AsmCpuid (
-;    IN   UINT32  RegisterInEax,
-;    IN   UINT32  RegisterInEcx,
-;    OUT  UINT32  *RegisterOutEax  OPTIONAL,
-;    OUT  UINT32  *RegisterOutEbx  OPTIONAL,
-;    OUT  UINT32  *RegisterOutEcx  OPTIONAL,
-;    OUT  UINT32  *RegisterOutEdx  OPTIONAL
-;    )
-;------------------------------------------------------------------------------
-AsmCpuidEx  PROC    USES    rbx
-    mov     eax, ecx
-    mov     ecx, edx
-    push    rax                         ; save Index on stack
-    cpuid
-    mov     r10, [rsp + 38h]
-    test    r10, r10
-    jz      @F
-    mov     [r10], ecx
-@@:
-    mov     rcx, r8
-    jrcxz   @F
-    mov     [rcx], eax
-@@:
-    mov     rcx, r9
-    jrcxz   @F
-    mov     [rcx], ebx
-@@:
-    mov     rcx, [rsp + 40h]
-    jrcxz   @F
-    mov     [rcx], edx
-@@:
-    pop     rax                         ; restore Index to rax as return value
-    ret
-AsmCpuidEx  ENDP
-
-    END
+;------------------------------------------------------------------------------\r
+;\r
+; Copyright (c) 2006 - 2008, 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
+; Module Name:\r
+;\r
+;   CpuIdEx.Asm\r
+;\r
+; Abstract:\r
+;\r
+;   AsmCpuidEx function\r
+;\r
+; Notes:\r
+;\r
+;------------------------------------------------------------------------------\r
+\r
+    .code\r
+\r
+;------------------------------------------------------------------------------\r
+;  UINT32\r
+;  EFIAPI\r
+;  AsmCpuidEx (\r
+;    IN   UINT32  RegisterInEax,\r
+;    IN   UINT32  RegisterInEcx,\r
+;    OUT  UINT32  *RegisterOutEax  OPTIONAL,\r
+;    OUT  UINT32  *RegisterOutEbx  OPTIONAL,\r
+;    OUT  UINT32  *RegisterOutEcx  OPTIONAL,\r
+;    OUT  UINT32  *RegisterOutEdx  OPTIONAL\r
+;    )\r
+;------------------------------------------------------------------------------\r
+AsmCpuidEx  PROC    USES    rbx\r
+    mov     eax, ecx\r
+    mov     ecx, edx\r
+    push    rax                         ; save Index on stack\r
+    cpuid\r
+    mov     r10, [rsp + 38h]\r
+    test    r10, r10\r
+    jz      @F\r
+    mov     [r10], ecx\r
+@@:\r
+    mov     rcx, r8\r
+    jrcxz   @F\r
+    mov     [rcx], eax\r
+@@:\r
+    mov     rcx, r9\r
+    jrcxz   @F\r
+    mov     [rcx], ebx\r
+@@:\r
+    mov     rcx, [rsp + 40h]\r
+    jrcxz   @F\r
+    mov     [rcx], edx\r
+@@:\r
+    pop     rax                         ; restore Index to rax as return value\r
+    ret\r
+AsmCpuidEx  ENDP\r
+\r
+    END\r