#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 */