Pridana verze v0.1

This commit is contained in:
2026-07-12 05:44:42 +02:00
commit 1266a65b82
40 changed files with 6126 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
; /*
; * AsterOS Kernel
; * Autor: Pavel Kalaš
; * Rok: 2026
; *
; * Vytvořeno jen tak z nudy a z chuti zkoušet nové věci.
; */
[bits 64]
section .text.boot
global _start
extern kmain
_start:
cli
mov word [0xB800A], 0x0F4B
mov rsp, stack_top
call kmain
.halt:
hlt
jmp .halt
section .bss
align 16
stack_bottom:
resb 16384
stack_top: