--- /dev/null
+;----------------------------------------------------------;
+; BOS kernel Christoffer Bubach, 2012-2015. ;
+;----------------------------------------------------------;
+; ;
+; FAT12 driver. ;
+; ;
+;----------------------------------------------------------;
+
+init_fat12:
+ push eax
+ ; a bit more code here
+ pop eax
+ ret
\ No newline at end of file
;-------------------;\r
; show version ;\r
;-------------------;\r
- bos_ver_str db 13,10,'BOS version 0.04 by Christoffer Bubach, 2003-2005.', 0\r
+ bos_ver_str db 13,10,'BOS version 0.05 by Christoffer Bubach, 2003-2005.', 0\r
show_ver:\r
push esi\r
push bx\r
--- /dev/null
+;----------------------------------------------------------;
+; BOS kernel Christoffer Bubach, 2012-2015. ;
+;----------------------------------------------------------;
+; ;
+; STDIO interface, handling all user input/output. ;
+; ;
+;----------------------------------------------------------;
+
+init_stdio:
+ push eax
+ ; a bit more code here
+ pop eax
+ ret
\ No newline at end of file
--- /dev/null
+;----------------------------------------------------------;
+; BOS kernel Christoffer Bubach, 2012-2015. ;
+;----------------------------------------------------------;
+; ;
+; VFS handling all devices and filesystems. ;
+; ;
+;----------------------------------------------------------;
+
+init_vfs:
+ push eax
+ ; a bit more code here
+ pop eax
+ ret
\ No newline at end of file