Rev 2722 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2722 | Rev 3908 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #ifndef KERN_mips32_FRAME_H_ |
35 | #ifndef KERN_mips32_FRAME_H_ |
| 36 | #define KERN_mips32_FRAME_H_ |
36 | #define KERN_mips32_FRAME_H_ |
| 37 | 37 | ||
| 38 | #define FRAME_WIDTH 14 /* 16K */ |
38 | #define FRAME_WIDTH 14 /* 16K */ |
| 39 | #define FRAME_SIZE (1 << FRAME_WIDTH) |
39 | #define FRAME_SIZE (1 << FRAME_WIDTH) |
| 40 | 40 | ||
| 41 | #ifdef KERNEL |
41 | #ifdef KERNEL |
| 42 | #ifndef __ASM__ |
42 | #ifndef __ASM__ |
| 43 | 43 | ||
| - | 44 | #include <typedefs.h> |
|
| - | 45 | ||
| 44 | extern void frame_arch_init(void); |
46 | extern void frame_arch_init(void); |
| 45 | extern void physmem_print(void); |
47 | extern void physmem_print(void); |
| 46 | 48 | ||
| - | 49 | extern uintptr_t end_frame; |
|
| - | 50 | ||
| 47 | #endif /* __ASM__ */ |
51 | #endif /* __ASM__ */ |
| 48 | #endif /* KERNEL */ |
52 | #endif /* KERNEL */ |
| 49 | 53 | ||
| 50 | #endif |
54 | #endif |
| 51 | 55 | ||