diff options
Diffstat (limited to 'os/include/romfs.h')
-rw-r--r-- | os/include/romfs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/os/include/romfs.h b/os/include/romfs.h new file mode 100644 index 0000000..b227baa --- /dev/null +++ b/os/include/romfs.h @@ -0,0 +1,9 @@ +#ifndef __ROMFS_H__ +#define __ROMFS_H__ + +#include <stdint.h> + +void register_romfs(const char * mountpoint, const uint8_t * romfs); + +#endif + |