28 lines
850 B
NASM
28 lines
850 B
NASM
; src/core/core.asm
|
|
; The core of the Calcite Operating System.
|
|
;
|
|
; Copyright 2026 Benji Dial
|
|
; This file is part of the Calcite Operating System.
|
|
;
|
|
; Calcite is free software: you can redistribute it and/or modify it under the
|
|
; terms of the GNU General Public License as published by the Free Software
|
|
; Foundation, version 3 only.
|
|
;
|
|
; Calcite is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
; A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
;
|
|
; You should have received a copy of the GNU General Public License along with
|
|
; Calcite. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
bits 64
|
|
|
|
section .text
|
|
|
|
global asm_set_cr3
|
|
asm_set_cr3:
|
|
mov cr3, rdi
|
|
mov rsp, rsi
|
|
push qword 0
|
|
xor rbp, rbp
|
|
jmp rdx
|