19 lines
369 B
C
19 lines
369 B
C
/*
|
|||
|
|
** Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
|
||
|
|
** Distributed under the terms of the OpenBeOS License.
|
||
|
|
*/
|
||
|
|
#ifndef _KERNEL_ARCH_PPC_CPU_H
|
||
|
|
#define _KERNEL_ARCH_PPC_CPU_H
|
||
|
|
|
||
|
|
#include <arch/ppc/thread_struct.h>
|
||
|
|
|
||
|
|
#define PAGE_SIZE 4096
|
||
|
|
|
||
|
|
#define _BIG_ENDIAN 1
|
||
|
|
#define _LITTLE_ENDIAN 0
|
||
|
|
|
||
|
|
struct iframe {
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif /* _KERNEL_ARCH_PPC_CPU_H */
|