Update include/kernel/kconfig.h

This commit is contained in:
2025-07-06 23:23:21 -05:00
parent bfe4eb383c
commit 8c1d41e881

View File

@ -13,6 +13,13 @@ extern "C" {
//#define ENABLE_USB //#define ENABLE_USB
//#define ENABLE_NETWORK //#define ENABLE_NETWORK
typedef struct {
bool enable_debug;
bool enable_fs;
bool enable_ide;
bool enable_usb;
bool enable_networking;
} kconf_t;
static inline kconf_t get_kconfig(void) static inline kconf_t get_kconfig(void)
{ {