added octal macro

date	2002.01.08.22.48.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:48:26 +00:00
parent 4e96cc2893
commit 7d8bc994de

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acmacros.h - C macros for the entire subsystem.
* $Revision: 1.105 $
* $Revision: 1.106 $
*
*****************************************************************************/
@ -332,6 +332,7 @@
#define MASK_BITS_ABOVE(position) (~(((ACPI_INTEGER)(-1)) << ((UINT32) (position))))
#define MASK_BITS_BELOW(position) (((ACPI_INTEGER)(-1)) << ((UINT32) (position)))
#define IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7'))
/* Macros for GAS addressing */