diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-16 20:34:23 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-16 20:34:23 +0000 |
commit | f7f897daefc5edc3ead909072d6e7309d76b5297 (patch) | |
tree | b33f6f8278e3abff577fd8b83ba771c364bd9a65 /MdePkg/Library/BaseLib/Ia32/WriteDr5.s | |
parent | 17b23c78ac822cd588a62c30b63b8447cb8aca0d (diff) | |
download | edk2-platforms-f7f897daefc5edc3ead909072d6e7309d76b5297.tar.xz |
Fixes for GCC.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@180 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/WriteDr5.s')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/WriteDr5.s | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/WriteDr5.s b/MdePkg/Library/BaseLib/Ia32/WriteDr5.s new file mode 100644 index 0000000000..057928a327 --- /dev/null +++ b/MdePkg/Library/BaseLib/Ia32/WriteDr5.s @@ -0,0 +1,42 @@ +#------------------------------------------------------------------------------
+#
+# 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:
+#
+# WriteDr5.Asm
+#
+# Abstract:
+#
+# AsmWriteDr5 function
+#
+# Notes:
+#
+#------------------------------------------------------------------------------
+
+
+
+
+
+#------------------------------------------------------------------------------
+# VOID
+# EFIAPI
+# AsmWriteDr5 (
+# IN UINTN Value
+# );
+#------------------------------------------------------------------------------
+.global _AsmWriteDr5
+_AsmWriteDr5:
+ movl 4(%esp),%eax
+ movl %eax, %dr5
+ ret
+
+
+
|