Rev 2153 | Rev 2198 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2153 | Rev 2158 | ||
|---|---|---|---|
| Line 29... | Line 29... | ||
| 29 | #ifndef __ASM_H__ |
29 | #ifndef __ASM_H__ |
| 30 | #define __ASM_H__ |
30 | #define __ASM_H__ |
| 31 | 31 | ||
| 32 | #define PAGE_SIZE 16384 |
32 | #define PAGE_SIZE 16384 |
| 33 | 33 | ||
| - | 34 | #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) |
|
| - | 35 | ||
| 34 | void memcpy(void *dst, void *src, int cnt); |
36 | /*void memcpy(void *dst, void *src, int cnt);*/ |
| 35 | void jump_to_kernel(void *entry, void *bootinfo, unsigned int bootinfo_size) __attribute__((noreturn)); |
37 | void jump_to_kernel(void *entry, void *bootinfo, unsigned int bootinfo_size) __attribute__((noreturn)); |
| 36 | 38 | ||
| 37 | #endif |
39 | #endif |