summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/RuntimeMain.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-28 13:05:28 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-28 13:05:28 +0100
commit84cc6ff6f43b48383248282743efc514946db641 (patch)
treefa7f9099b87e235ba122d17b6a3b39234cd39883 /Private/Source/RuntimeMain.cxx
parent3d798c5fc738768493df925d1f5d72256f2dec4e (diff)
Kernel: :boom: breaking changes, Update API and the HCORE based
macros, rename HCore to NewOS. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/Source/RuntimeMain.cxx')
-rw-r--r--Private/Source/RuntimeMain.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/Source/RuntimeMain.cxx b/Private/Source/RuntimeMain.cxx
index ffecaa18..3ae1d428 100644
--- a/Private/Source/RuntimeMain.cxx
+++ b/Private/Source/RuntimeMain.cxx
@@ -20,10 +20,10 @@
EXTERN_C void RuntimeMain(void) {
///! Mounts a NewFS block.
- HCore::NewFilesystemManager* newFS = new HCore::NewFilesystemManager();
- HCore::ke_protect_ke_heap(newFS);
+ NewOS::NewFilesystemManager* newFS = new NewOS::NewFilesystemManager();
+ NewOS::ke_protect_ke_heap(newFS);
- HCore::FilesystemManagerInterface::Mount(newFS);
+ NewOS::FilesystemManagerInterface::Mount(newFS);
///! we're done, unmount.
delete newFS;