]> git.proxmox.com Git - mirror_edk2.git/blobdiff - DuetPkg/DxeIpl/X64/CpuIoAccess.asm
Clean up DxeIpl:
[mirror_edk2.git] / DuetPkg / DxeIpl / X64 / CpuIoAccess.asm
diff --git a/DuetPkg/DxeIpl/X64/CpuIoAccess.asm b/DuetPkg/DxeIpl/X64/CpuIoAccess.asm
deleted file mode 100644 (file)
index f1515e8..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-  title   CpuIoAccess.asm\r
-;------------------------------------------------------------------------------\r
-;\r
-; Copyright (c) 2006 - 2007, Intel Corporation                                                         \r
-; All rights reserved. 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
-;   CpuIoAccess.asm\r
-; \r
-; Abstract:\r
-;   CPU IO Abstraction\r
-;\r
-;------------------------------------------------------------------------------\r
-\r
-\r
-.code\r
-\r
-;------------------------------------------------------------------------------\r
-;  UINT8\r
-;  CpuIoRead8 (\r
-;    UINT16  Port   // rcx\r
-;    )\r
-;------------------------------------------------------------------------------\r
-CpuIoRead8 PROC        PUBLIC\r
-    xor   eax, eax\r
-    mov    dx, cx\r
-    in     al, dx\r
-    ret\r
-CpuIoRead8  ENDP\r
-\r
-;------------------------------------------------------------------------------\r
-;  VOID\r
-;  CpuIoWrite8 (\r
-;    UINT16  Port,    // rcx\r
-;    UINT32  Data     // rdx\r
-;    )\r
-;------------------------------------------------------------------------------\r
-CpuIoWrite8 PROC        PUBLIC\r
-         mov   eax, edx\r
-    mov    dx, cx\r
-    out    dx, al\r
-    ret\r
-CpuIoWrite8  ENDP\r
-\r
-\r
-END\r