Put rootdir and cluster access into separate files

This commit is contained in:
Nero 2021-03-19 19:01:38 +00:00
parent fbab632616
commit 5e3ae0aa08
5 changed files with 128 additions and 115 deletions

View file

@ -10,6 +10,8 @@ banner: db "RDOS KERNEL ", V, 0x0A, 0x0D, '$', 0x1A
%include "inc/bpb.asm"
%include "kernel/drive.asm"
%include "kernel/fcb.asm"
%include "kernel/rootdir.asm"
%include "kernel/cluster.asm"
section .text
@ -23,7 +25,12 @@ init: call rstseg
mov dx, testdta
call setdta
mov dx, testfcb
call fndfst
call open
int 3
call read
int 3