Now we can generate a fairly basic FS.

Added some test material
This commit is contained in:
Godzil
2022-05-26 12:02:47 +01:00
parent d9b7996c8e
commit 8fd7ab33fc
11 changed files with 296 additions and 40 deletions

View File

@@ -1,8 +1,18 @@
//
// Created by Manoel.Trapier on 25/05/2022.
//
/******************************************************************************
* MiniFFS : Mini Flat File System
* platform/memory.h: Specific functions for the Memory backend
*
* Copyright (c) 2008-2022 986-Studio. All rights reserved.
*
******************************************************************************/
#ifndef MINIFFS_PLATFORM_MEMORY_H
#define MINIFFS_PLATFORM_MEMORY_H
typedef struct miniffs_t
{
miniffs_header_t *header;
void *memoryOffset;
} miniffs_t;
#endif /* MINIFFS_PLATFORM_MEMORY_H */