mirror of
https://github.com/LIV2/a4091-software.git
synced 2025-12-06 06:22:44 +00:00
This change brings support for a second filesystem stored in the ROM (if there's enough space) The romfile code is fairly local so there was no point in keeping the files around in a4091_save_t. Now the file state is kept locally in init_romfiles() instead. Since not all filesystem drivers contain a resident init structure, it is now also possible to specify a DosType that is used to register the filesystem in filesystem.resource.
7 lines
73 B
C
7 lines
73 B
C
#ifndef ROMFILE_H
|
|
#define ROMFILE_H 1
|
|
|
|
void init_romfiles(void);
|
|
|
|
#endif
|