From 021ea9b271f2144f7b16ae41a9236292dea7897d Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Sun, 24 May 2020 21:55:12 -0400 Subject: basic fs type stuff, fat16, removing stack segment and using data segment --- src/kernel/fs.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/kernel/fs.h') diff --git a/src/kernel/fs.h b/src/kernel/fs.h index 821d810..e2b14c0 100644 --- a/src/kernel/fs.h +++ b/src/kernel/fs.h @@ -4,7 +4,8 @@ void clear_fs_handles(); typedef uint8_t fs_handle; fs_handle fs_open(uint8_t *path); -int16_t fs_seek(fs_handle handle, int16_t by); -uint16_t fs_read(fs_handle handle, uint16_t max, void *buffer); -uint16_t fs_write(fs_handle handle, uint16_t max, void *buffer); +fs_handle fs_open_root(); +int32_t fs_seek(fs_handle handle, int32_t by); +uint32_t fs_read(fs_handle handle, uint32_t max, void *buffer); +uint32_t fs_write(fs_handle handle, uint32_t max, void *buffer); void fs_close(fs_handle handle); \ No newline at end of file -- cgit v1.2.3