rdos/kernel/main.asm

39 lines
439 B
NASM
Raw Normal View History

cpu 8086
org 0x0100
2019-09-06 00:24:39 +02:00
push cs
pop es
mov di, isr_dos_main
mov ax, 0x21
call intr_register
.loop:
mov ah, 0x01
int 0x21
jmp .loop
2019-09-03 12:58:06 +02:00
2019-08-31 00:18:05 +02:00
cli
.halt:
hlt
jmp .halt
2019-09-06 00:24:39 +02:00
isr_dos_main:
cmp ah, 0x01
je isr_getc
cmp ah, 0x02
je isr_putc
isr_error:
push bp
mov bp, sp
; set carry flag
or WORD [SS:BP+6], 1
pop bp
isr_return:
iret
2019-09-03 12:58:06 +02:00
%include "intr.asm"
%include "drvtab.asm"
2019-09-06 00:24:39 +02:00
%include "chario.asm"
times 1000 db 0xEA