summaryrefslogtreecommitdiffhomepage
path: root/Kernel/HALKit
diff options
context:
space:
mode:
authorAmlal <amlal@zka.com>2024-08-05 20:41:52 +0200
committerAmlal <amlal@zka.com>2024-08-05 20:41:52 +0200
commiteb4f3414d2ca4ff518481afdd7b391f1c440fa9e (patch)
tree8dd88e44589e2479e182204414a18a41d9d41809 /Kernel/HALKit
parenta039ff365ab15efae18b58d738a7b51a9b5e6769 (diff)
[BUMP] bumping sources.
Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Kernel/HALKit')
-rw-r--r--Kernel/HALKit/AMD64/HalKernelMain.cxx2
-rw-r--r--Kernel/HALKit/AMD64/Processor.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/HALKit/AMD64/HalKernelMain.cxx b/Kernel/HALKit/AMD64/HalKernelMain.cxx
index e3bcb20c..3cefe1d3 100644
--- a/Kernel/HALKit/AMD64/HalKernelMain.cxx
+++ b/Kernel/HALKit/AMD64/HalKernelMain.cxx
@@ -233,7 +233,7 @@ void hal_real_init(void)
kTextOffsetY += 10;
cg_write_text("LOADING SMP...", kTextOffsetY, 10, RGB(0x00, 0x00, 0x00));
- for (size_t i = 0; i < cMaxCmdLine; i++)
+ for (Kernel::SizeT i = 0; i < kHandoverMaxCmdLine; i++)
{
if (Kernel::rt_string_cmp(kHandoverHeader->f_CommandLine[i], "/AutoFormat", Kernel::rt_string_len("/AutoFormat")) == 0)
{
diff --git a/Kernel/HALKit/AMD64/Processor.hxx b/Kernel/HALKit/AMD64/Processor.hxx
index 79c5794c..53addd46 100644
--- a/Kernel/HALKit/AMD64/Processor.hxx
+++ b/Kernel/HALKit/AMD64/Processor.hxx
@@ -40,7 +40,7 @@ EXTERN_C
#define kTaskGate (0b10001100)
#define kGdtCodeSelector (0x08)
#define kGdtUserCodeSelector (0x10)
-#define cHeapStartOffset (0x10000000)
+#define cHeapStartOffset (0x4000000)
namespace Kernel
{