summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/HALKit/ARM64
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-07 12:30:08 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-07 12:30:08 +0100
commitdc2b2cdf68efb7320d51cb4241f4878ceafb04da (patch)
tree7ea9268fb3c54220787ad6c508aaf6e5af386e70 /dev/Kernel/HALKit/ARM64
parentac62a264fe08839b46160e8ce218a32012883cd7 (diff)
Replace endl with kendl, and add make_fs; a tool to format a
filesystem under the EPM. -> EPM + NeFS, HPFS, ext? Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/HALKit/ARM64')
-rw-r--r--dev/Kernel/HALKit/ARM64/HalApplicationProcessor.cc4
-rw-r--r--dev/Kernel/HALKit/ARM64/HalKernelPanic.cc4
-rw-r--r--dev/Kernel/HALKit/ARM64/Storage/MFlash+IO.cc4
3 files changed, 6 insertions, 6 deletions
diff --git a/dev/Kernel/HALKit/ARM64/HalApplicationProcessor.cc b/dev/Kernel/HALKit/ARM64/HalApplicationProcessor.cc
index 12fb27ae..5ef13a3b 100644
--- a/dev/Kernel/HALKit/ARM64/HalApplicationProcessor.cc
+++ b/dev/Kernel/HALKit/ARM64/HalApplicationProcessor.cc
@@ -78,7 +78,7 @@ namespace NeOS
// Enable interrupt 32 for AP.
HAL::hal_mmio_write(GICD_BASE + GICD_ISENABLER + (32 / 32) * 4, 0x01 << (32 % 32));
- kout << "AP's GIC configured in ISR 32." << endl;
+ kout << "AP's GIC configured in ISR 32." << kendl;
}
BOOL mp_handle_gic_interrupt_el0(Void)
@@ -89,7 +89,7 @@ namespace NeOS
// Check if it's a valid interrupt (not spurious)
if ((interrupt_id & 0x3FF) < 1020)
{
- kout << "Handling interrupt for AP: " << (interrupt_id & 0x3FF) << endl;
+ kout << "Handling interrupt for AP: " << (interrupt_id & 0x3FF) << kendl;
// TODO: Handle code here.
diff --git a/dev/Kernel/HALKit/ARM64/HalKernelPanic.cc b/dev/Kernel/HALKit/ARM64/HalKernelPanic.cc
index cdf6e1b1..533ae982 100644
--- a/dev/Kernel/HALKit/ARM64/HalKernelPanic.cc
+++ b/dev/Kernel/HALKit/ARM64/HalKernelPanic.cc
@@ -71,8 +71,8 @@ namespace NeOS
{
if (!expr)
{
- kout << "FAILED: FILE: " << file << endl;
- kout << "FAILED: LINE: " << line << endl;
+ kout << "FAILED: FILE: " << file << kendl;
+ kout << "FAILED: LINE: " << line << kendl;
ke_panic(RUNTIME_CHECK_FAILED, file); // Runtime Check failed
}
diff --git a/dev/Kernel/HALKit/ARM64/Storage/MFlash+IO.cc b/dev/Kernel/HALKit/ARM64/Storage/MFlash+IO.cc
index e65b016c..1335a9e4 100644
--- a/dev/Kernel/HALKit/ARM64/Storage/MFlash+IO.cc
+++ b/dev/Kernel/HALKit/ARM64/Storage/MFlash+IO.cc
@@ -64,7 +64,7 @@ namespace NeOS
kFlashMetaPackets[slot]->InterruptEnable = YES;
- kout << "Enabled hardware slot at: " << number(slot) << endl;
+ kout << "Enabled hardware slot at: " << number(slot) << kendl;
return YES;
}
@@ -77,7 +77,7 @@ namespace NeOS
kFlashMetaPackets[slot]->InterruptEnable = NO;
- kout << "Disabled hardware slot at: " << number(slot) << endl;
+ kout << "Disabled hardware slot at: " << number(slot) << kendl;
return YES;
}