diff options
| author | Amlal EL Mahrouss <amlal@softwarelabs.com> | 2024-06-14 09:58:11 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlal@softwarelabs.com> | 2024-06-14 09:58:11 +0200 |
| commit | dd7b72379108c10cd68853d2a8a0332784ebb8cb (patch) | |
| tree | 0b057b7a0aeebb68967c4fc2caf56a39eddbb8fe /Kernel/HALKit/AMD64/HalInterruptAPI.asm | |
| parent | 479ee6ad453401f5ae7f46d3d91136753f0839e7 (diff) | |
Kernel: Scheduler: ProcessHeader::New: do not get the pointer before allocating it!
Kernel: HAL: AMD64: Two things.
- Switching to an ARM HAL for our Zeta platform.
- Fix return register when sending acknowledge on APIC, which was using
the 32-bit eax instead of rax.
Kernel: Boot: Update uname for Windows.
Kernel: GDT: move as global (HalKenelMain.cxx)
Signed-off-by: Amlal EL Mahrouss <amlal@softwarelabs.com>
Diffstat (limited to 'Kernel/HALKit/AMD64/HalInterruptAPI.asm')
| -rw-r--r-- | Kernel/HALKit/AMD64/HalInterruptAPI.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/HALKit/AMD64/HalInterruptAPI.asm b/Kernel/HALKit/AMD64/HalInterruptAPI.asm index 150cfc10..4832ecf3 100644 --- a/Kernel/HALKit/AMD64/HalInterruptAPI.asm +++ b/Kernel/HALKit/AMD64/HalInterruptAPI.asm @@ -157,10 +157,10 @@ __NEW_INT_32: pop rcx pop rax - mov eax, 0 + mov rax, 0 ;; tell there local apic that we're done. - mov dword [0xFEE00000 + 0xB0], eax ; LAPIC_EOI + mov [0xFEE00000 + 0xB0], rax ; LAPIC_EOI iretq |
