blob: c1c1e7ff7acfc2bfd77621160e047f594cae608c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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)
#define SECTOR_SIZE (512)
#endif /* CONFIG_H */
|