blob: 19d05a9e1f75ceb28a106ef05865e186f56da660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef CONFIG_H
#define CONFIG_H
#define TOTAL_INTERRUPTS 512
#define KERNEL_CODE_SELECTOR 0x08
#define KERNEL_DATA_SELECTOR 0x010
/* Kernel heap settings */
#define PAGE_SIZE (4096)
#endif /* CONFIG_H */
|