]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/Ipf/Asm.h
Update copyright for files modified in this year
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ipf / Asm.h
CommitLineData
891193ee 1/** @file \r
42eedea9 2\r
891193ee 3 This module contains generic macros for an assembly writer.\r
42eedea9 4\r
373ade0e 5Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
891193ee 6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
42eedea9 13**/\r
14\r
15#ifndef _ASM_H_\r
16#define _ASM_H_\r
f1baef62 17\r
18#define TRUE 1\r
19#define FALSE 0\r
20#define PROCEDURE_ENTRY(name) .##text; \\r
21 .##type name, @function; \\r
22 .##proc name; \\r
23 name::\r
24\r
25#define PROCEDURE_EXIT(name) .##endp name\r
26\r
27#endif // _ASM_H\r