Rev 1018 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1018 | Rev 1685 | ||
---|---|---|---|
Line 27... | Line 27... | ||
27 | */ |
27 | */ |
28 | 28 | ||
29 | #ifndef __ASM_H__ |
29 | #ifndef __ASM_H__ |
30 | #define __ASM_H__ |
30 | #define __ASM_H__ |
31 | 31 | ||
- | 32 | #define PAGE_SIZE 16384 |
|
- | 33 | #define PAGE_WIDTH 14 |
|
- | 34 | ||
- | 35 | #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) |
|
- | 36 | ||
32 | void jump_to_kernel(void *code) __attribute__((noreturn)); |
37 | void jump_to_kernel(void *entry, void *bootinfo, unsigned int bootinfo_size) __attribute__((noreturn)); |
33 | 38 | ||
34 | #endif |
39 | #endif |