diff options
Diffstat (limited to 'os/src')
-rw-r--r-- | os/src/romfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/src/romfs.c b/os/src/romfs.c index 403bef9..270fb54 100644 --- a/os/src/romfs.c +++ b/os/src/romfs.c @@ -90,5 +90,6 @@ static int romfs_open(void * opaque, const char * path, int flags, int mode) { } void register_romfs(const char * mountpoint, const uint8_t * romfs) { + DBGOUT("Registering romfs `%s' @ %p\r\n", mountpoint, romfs); register_fs(mountpoint, romfs_open, (void *) romfs); } |