From 1acc542400d15ddf32f44e3f1ddb82f9c9fe4aab Mon Sep 17 00:00:00 2001 From: "leleraffa97@hotmail.it" Date: Sat, 26 Aug 2017 11:11:39 +0200 Subject: File system initialization Simple I/O (sio) interfaced, not yet implemented --- sw/z80/kernel/include/fs/mount.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sw/z80/kernel/include/fs/mount.h (limited to 'sw/z80/kernel/include/fs/mount.h') diff --git a/sw/z80/kernel/include/fs/mount.h b/sw/z80/kernel/include/fs/mount.h new file mode 100644 index 0000000..a0edd5d --- /dev/null +++ b/sw/z80/kernel/include/fs/mount.h @@ -0,0 +1,15 @@ +#ifndef MOUNT_H +#define MOUNT_H + +#include "fs.h" + +#define FS_MOUNT_LIMIT 16 + +struct fs_mount_point +{ + struct fs_inumber inode; // dir mounted + uint serial_port :4; + struct fs_superblock superblock; // block informations +} + +#endif -- cgit v1.2.1