diff options
author | leleraffa97@hotmail.it <leleraffa97@hotmail.it> | 2017-08-26 11:11:39 +0200 |
---|---|---|
committer | leleraffa97@hotmail.it <leleraffa97@hotmail.it> | 2017-08-26 11:11:39 +0200 |
commit | 1acc542400d15ddf32f44e3f1ddb82f9c9fe4aab (patch) | |
tree | fb439e84abdf86a1b6e9f7362ca4c3cdeef2bb8d /sw/z80/kernel/fs | |
parent | Merge remote-tracking branch 'origin/naopross' into atlas (diff) | |
download | z80uPC-1acc542400d15ddf32f44e3f1ddb82f9c9fe4aab.tar.gz z80uPC-1acc542400d15ddf32f44e3f1ddb82f9c9fe4aab.zip |
File system initialization
Simple I/O (sio) interfaced, not yet implemented
Diffstat (limited to '')
-rw-r--r-- | sw/z80/kernel/fs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/z80/kernel/fs.c b/sw/z80/kernel/fs.c new file mode 100644 index 0000000..3ce7f42 --- /dev/null +++ b/sw/z80/kernel/fs.c @@ -0,0 +1,5 @@ +#include "fs.h" +#include "users.h" +#include "mount.h" + +struct fs_mount_point * mount_points[FS_MOUNT_LIMIT]; |