mirror of
https://github.com/acpica/acpica/
synced 2025-02-04 07:34:13 +03:00
64-bit support
date 99.10.21.17.08.00; author rmoore1; state Exp;
This commit is contained in:
parent
21269625ab
commit
854ee69336
@ -122,11 +122,11 @@
|
||||
*/
|
||||
|
||||
#ifndef LOWORD
|
||||
#define LOWORD(l) ((UINT16)(UINT32)(l))
|
||||
#define LOWORD(l) ((UINT16)(NATIVE_UINT)(l))
|
||||
#endif
|
||||
|
||||
#ifndef HIWORD
|
||||
#define HIWORD(l) ((UINT16)((((UINT32)(l)) >> 16) & 0xFFFF))
|
||||
#define HIWORD(l) ((UINT16)((((NATIVE_UINT)(l)) >> 16) & 0xFFFF))
|
||||
#endif
|
||||
|
||||
#ifndef LOBYTE
|
||||
@ -175,6 +175,13 @@
|
||||
#define MOD_16(a) ((a)&0x0F)
|
||||
|
||||
|
||||
|
||||
#ifdef IA64
|
||||
#define ALIGN64(bc) char Align[bc];
|
||||
#else
|
||||
#define ALIGN64(bc)
|
||||
#endif
|
||||
|
||||
/* Assert macros */
|
||||
|
||||
#ifdef DEBUG_ASSERT
|
||||
|
Loading…
x
Reference in New Issue
Block a user