summaryrefslogtreecommitdiffhomepage
path: root/include/ne_system/Drivers
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-14 15:34:19 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-14 15:34:19 +0100
commit6eaccbeb057d4080c9b44fddc32e4c284225ee65 (patch)
tree5b15b953f902609a59f4b997f530405c063d1bcd /include/ne_system/Drivers
parentaaec2471dc7dee11d653ee89f893cc7de2d1a803 (diff)
[CHORE] Update system headers, final changes for the structure.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ne_system/Drivers')
-rw-r--r--include/ne_system/Drivers/DDK.h11
-rw-r--r--include/ne_system/Drivers/Detail/Config.h19
2 files changed, 30 insertions, 0 deletions
diff --git a/include/ne_system/Drivers/DDK.h b/include/ne_system/Drivers/DDK.h
new file mode 100644
index 0000000..7a46c8b
--- /dev/null
+++ b/include/ne_system/Drivers/DDK.h
@@ -0,0 +1,11 @@
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (see LICENSE file)
+// Official repository: https://github.com/ne-foss-org/src
+
+#ifndef _NE_DDK_DDK_H_
+#define _NE_DDK_DDK_H_
+
+#include <Drivers/Detail/Config.h>
+
+#endif // _NE_DDK_DDK_H_
diff --git a/include/ne_system/Drivers/Detail/Config.h b/include/ne_system/Drivers/Detail/Config.h
new file mode 100644
index 0000000..cb788d6
--- /dev/null
+++ b/include/ne_system/Drivers/Detail/Config.h
@@ -0,0 +1,19 @@
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (see LICENSE file)
+// Official repository: https://github.com/ne-foss-org/src
+
+#ifndef _NE_DDK_CONFIG_H_
+#define _NE_DDK_CONFIG_H_
+
+#define _ARCH __ne_arch
+
+#define _SUBSYSTEM_NET 0x1000
+#define _SUBSYSTEM_DDK 0x1000
+#define _SUBSYSTEM_SYS 0x1000
+
+#define _NEKERNEL 202603L
+
+#include <libDDK/DriverKit/DriverKit.h>
+
+#endif