summaryrefslogtreecommitdiff
path: root/os/src
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-01-29 19:58:11 -0800
committerPixel <pixel@nobis-crew.org>2011-01-29 19:58:11 -0800
commitdeeefd2e53795500ebb2afcc0b4d97e84eb7f7e9 (patch)
tree6808dbdbf60b53f2febb14be522fd785ac18cadc /os/src
parentea49b5b3f435bce0a301111fad0738efb0b39e0d (diff)
Adding sample code for the romfs into the demo, and into the makefile.
Diffstat (limited to 'os/src')
-rw-r--r--os/src/romfs.c1
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);
}