From b323d403149db3d720a63af1087d44718821bd67 Mon Sep 17 00:00:00 2001 From: Amlal Date: Thu, 12 Sep 2024 03:16:15 +0200 Subject: Kernel improvements, and Paging API changes. ZKA: - Updated and fixed 4KB pages on ARM64. - Fixed 4KB pages on AMD64. - Refactor BMP allocator. ZBA: - Refactor Handover protocol. DDK: - Refactor and breaking API changes. HPFS: - Update code according to DDK. Signed-off-by: Amlal --- dev/HPFS/Sources/IFSMain.cxx | 20 -------------------- dev/HPFS/Sources/hpfs_main.cxx | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 dev/HPFS/Sources/IFSMain.cxx create mode 100644 dev/HPFS/Sources/hpfs_main.cxx (limited to 'dev/HPFS/Sources') diff --git a/dev/HPFS/Sources/IFSMain.cxx b/dev/HPFS/Sources/IFSMain.cxx deleted file mode 100644 index c2ae5b0a..00000000 --- a/dev/HPFS/Sources/IFSMain.cxx +++ /dev/null @@ -1,20 +0,0 @@ -/* ------------------------------------------- - - Copyright ZKA Technologies. - - FILE: IFSMain.cxx - PURPOSE: HPFS IFS entrypoint. - -------------------------------------------- */ - -#include -#include - -/** @brief HPFS IFS main. */ -HPFS_INT32 ModuleMain(HPFS_VOID) -{ - auto ifs_handle = KernelGetProperty(0, "\\.\\IFSObject"); - // TODO: Register IFS... - - return 0; -} diff --git a/dev/HPFS/Sources/hpfs_main.cxx b/dev/HPFS/Sources/hpfs_main.cxx new file mode 100644 index 00000000..52ac32ab --- /dev/null +++ b/dev/HPFS/Sources/hpfs_main.cxx @@ -0,0 +1,20 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + + FILE: IFSMain.cxx + PURPOSE: HPFS IFS entrypoint. + +------------------------------------------- */ + +#include +#include + +/** @brief HPFS IFS main. */ +HPFS_INT32 ModuleMain(HPFS_VOID) +{ + auto ifs_handle = KernelGetObject(0, "IFS_OBJECT"); + // TODO: Register this IFS with necessary I/O functions... + + return 0; +} -- cgit v1.2.3