mirror of
https://review.haiku-os.org/haiku
synced 2025-01-27 00:34:50 +01:00
f76bc433e1
* Not all of these headers are correct yet, just adding what's necessary to get things to compile for the time being.
16 lines
436 B
C
16 lines
436 B
C
/*
|
|
* Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H
|
|
#define _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H
|
|
|
|
#ifndef _SYSTEM_COMMPAGE_DEFS_H
|
|
# error Must not be included directly. Include <commpage_defs.h> instead!
|
|
#endif
|
|
|
|
// FIXME: correct address
|
|
#define ARCH_USER_COMMPAGE_ADDR (0xffff0000)
|
|
|
|
#endif /* _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H */
|