Protypical implementation of DPT copying

This commit is contained in:
Nero 2020-10-24 22:50:23 +00:00
parent 33f4fe37a8
commit dc6035fe9d
4 changed files with 80 additions and 21 deletions

View file

@ -4,6 +4,7 @@
%include "inc/bpb.asm"
%include "inc/mbr.asm"
%include "inc/fcb.asm"
%include "inc/dpt.asm"
; kernel stack size in words
%define stacksize 512
@ -36,6 +37,7 @@ print_banner: mov si, banner
hlt: hlt
jmp hlt
%include "kernel/far.asm"
%include "kernel/fcb.asm"
%include "kernel/drive.asm"