+; out: cf = set if failed ;
+; ;
+;--------------------------------------------------------------;
+init_vfs:
+ push eax
+ push ebx
+
+ mov ebx, sizeof.VFS ; allocate structure size
+ call allocate_mem
+ cmp eax, 0
+ jne .ok
+ stc ; if error, set carry
+ mov ebx, 0
+
+ .ok:
+ mov dword [VFS_structure], ebx
+
+ pop ebx
+ pop eax
+ ret
+
+;--------------------------------------------------------------;
+; add_media - add media driver ;
+;--------------------------------------------------------------;
+; ;