mirror of
https://github.com/acpica/acpica/
synced 2025-01-10 11:32:05 +03:00
added octal macro
date 2002.01.08.22.48.00; author rmoore1; state Exp;
This commit is contained in:
parent
4e96cc2893
commit
7d8bc994de
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user