summaryrefslogtreecommitdiffhomepage
path: root/dev/HPFS
diff options
context:
space:
mode:
authorAmlal <amlal@el-mahrouss-logic.com>2024-09-09 16:49:28 +0200
committerAmlal <amlal@el-mahrouss-logic.com>2024-09-09 16:49:28 +0200
commit6dbc74799f465eec249e2d8f01a472d0dd3b33c8 (patch)
tree53ef934c936537424e1b8d2469cf12fd421234e3 /dev/HPFS
parent6274e822da7790961dc8f587cd83645f06e79245 (diff)
FIX: Scheduler improvements, MM improvements, worked on a tiny bmp allocator for pages.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/HPFS')
-rw-r--r--dev/HPFS/Sources/IFSMain.cxx6
-rw-r--r--dev/HPFS/hpfs.json1
2 files changed, 6 insertions, 1 deletions
diff --git a/dev/HPFS/Sources/IFSMain.cxx b/dev/HPFS/Sources/IFSMain.cxx
index d107db2a..c2ae5b0a 100644
--- a/dev/HPFS/Sources/IFSMain.cxx
+++ b/dev/HPFS/Sources/IFSMain.cxx
@@ -8,9 +8,13 @@
------------------------------------------- */
#include <HPFS/Defines.hxx>
+#include <DDK/KernelStd.h>
/** @brief HPFS IFS main. */
-HPFS_INT32 IFSStart(HPFS_VOID)
+HPFS_INT32 ModuleMain(HPFS_VOID)
{
+ auto ifs_handle = KernelGetProperty(0, "\\.\\IFSObject");
+ // TODO: Register IFS...
+
return 0;
}
diff --git a/dev/HPFS/hpfs.json b/dev/HPFS/hpfs.json
index a7ba778e..2b08f057 100644
--- a/dev/HPFS/hpfs.json
+++ b/dev/HPFS/hpfs.json
@@ -14,6 +14,7 @@
],
"cpp_macros": [
"__HPFS_IMPL__",
+ "__NEWOSKRNL__",
"cHPFSVersion=0x0100",
"cHPFSVersionHighest=0x0100",
"cHPFSVersionLowest=0x0100"