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/filesystem.c | |
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 'sw/z80/kernel/filesystem.c')
-rw-r--r-- | sw/z80/kernel/filesystem.c | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/sw/z80/kernel/filesystem.c b/sw/z80/kernel/filesystem.c deleted file mode 100644 index 38a5456..0000000 --- a/sw/z80/kernel/filesystem.c +++ /dev/null @@ -1,44 +0,0 @@ -#include "filesystem.h" - -struct filesystem * fs_parse_superblock(struct filesystem *fs) -{ - -} - -/* resolves an arbitrary path */ -uint16_t fs_parse_path(const char *path) -{ - -} - -/* gets inode from inumber */ -inode_t * fs_get_inode(inode_t *buffer, uint16_t i_number) -{ - -} - -inode_t * fs_new_inode(inode_t *inode, const char *name) -{ - -} - -int fs_free_inode(const inode_t *inode) -{ - -} - -void fs_chmod(inode_t *inode, uint8_t mode) -{ - -} - -void fs_chown(inode_t *inode, uint8_t uid) -{ - -} - -int fs_rename(inode_t *inode, const char *name) -{ - -} - |