From 248a4d97873ed157d729d53ca1ace5e2ae848ca6 Mon Sep 17 00:00:00 2001 From: vanjeff Date: Fri, 24 Oct 2008 05:39:59 +0000 Subject: Renamed git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6208 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Library/BaseLib/Ipf/Asm.h | 25 +++++++++++++++++++++++++ MdePkg/Library/BaseLib/Ipf/asm.h | 25 ------------------------- 2 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 MdePkg/Library/BaseLib/Ipf/Asm.h delete mode 100644 MdePkg/Library/BaseLib/Ipf/asm.h (limited to 'MdePkg') diff --git a/MdePkg/Library/BaseLib/Ipf/Asm.h b/MdePkg/Library/BaseLib/Ipf/Asm.h new file mode 100644 index 0000000000..3067d4bee6 --- /dev/null +++ b/MdePkg/Library/BaseLib/Ipf/Asm.h @@ -0,0 +1,25 @@ +/** @file This module contains generic macros for an assembly writer. + + 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. +**/ + +#ifndef _ASM_H_ +#define _ASM_H_ + +#define TRUE 1 +#define FALSE 0 +#define PROCEDURE_ENTRY(name) .##text; \ + .##type name, @function; \ + .##proc name; \ + name:: + +#define PROCEDURE_EXIT(name) .##endp name + +#endif // _ASM_H diff --git a/MdePkg/Library/BaseLib/Ipf/asm.h b/MdePkg/Library/BaseLib/Ipf/asm.h deleted file mode 100644 index 3067d4bee6..0000000000 --- a/MdePkg/Library/BaseLib/Ipf/asm.h +++ /dev/null @@ -1,25 +0,0 @@ -/** @file This module contains generic macros for an assembly writer. - - 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. -**/ - -#ifndef _ASM_H_ -#define _ASM_H_ - -#define TRUE 1 -#define FALSE 0 -#define PROCEDURE_ENTRY(name) .##text; \ - .##type name, @function; \ - .##proc name; \ - name:: - -#define PROCEDURE_EXIT(name) .##endp name - -#endif // _ASM_H -- cgit v1.2.3