Remove dosapi stub, not intended to implement

This commit is contained in:
Nero 2019-05-02 20:21:31 +00:00
parent 90c6b3dcca
commit e47d107b5f
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
isr_dosmain:
cmp ah, 0x01
je isr_getc_echo
cmp ah, 0x02
je isr_putc
iret
isr_getc_echo:
mov ah, 0x00
int 0x16
cmp al, 0x00
je isr_getc_echo
iret
isr_putc:
mov al, dl
call putc
iret