2019-04-20 23:02:35 +02:00
|
|
|
cpu 8086
|
2019-09-08 03:04:01 +02:00
|
|
|
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
|
2019-04-29 00:01:30 +02:00
|
|
|
.halt:
|
|
|
|
hlt
|
|
|
|
jmp .halt
|
2019-04-20 23:02:35 +02:00
|
|
|
|
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"
|
|
|
|
|
2019-09-08 03:04:01 +02:00
|
|
|
times 1000 db 0xEA
|