blob: 593eb2a8b4f7f18c13b44131be36ae07e7ac35cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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)
/* Path parsing */
#define PATH_MAX (128)
#endif /* CONFIG_H */
|