open-story-teller/software/system/filesystem.h

18 lines
377 B
C

#ifndef FILESYSTEM_H
#define FILESYSTEM_H
#include <stdbool.h>
typedef struct
{
uint32_t number_of_stories;
uint32_t current_story;
} ost_context_t;
bool filesystem_read_index_file(ost_context_t *ctx);
void filesystem_mount();
void filesystem_display_image(const char *filename);
void filesystem_load_rom(uint8_t *mem, const char *filename);
#endif // FILESYSTEM_H