a4091-software/romfile.h
Stefan Reinauer 1a1fc3b5d4 Support two filesystem slots
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.
2023-12-03 11:35:17 -08:00

7 lines
73 B
C

#ifndef ROMFILE_H
#define ROMFILE_H 1
void init_romfiles(void);
#endif