rdos/kernel/main.asm

31 lines
430 B
NASM
Raw Normal View History

; assumptions about the starting envionment
cpu 8086
org 0x0000
_startup:
mov ax, cs
mov ss, ax
mov sp, 0x0000
2019-04-01 00:58:19 +02:00
; <0x0010 is BIOS segment when relocated to HMA
; so we need a nop sled
times (0x10 - ($-$$)) nop
main:
call intr_init
2019-03-31 22:54:51 +02:00
int 3
2019-03-31 22:54:51 +02:00
sti
.halt:
hlt
jmp .halt
%include "heap.asm"
%include "intr.asm"
%include "debug.asm"
%include "kprintf.asm"
_reloc_end:
align 16
heap: