Proper support for registering builtin modules in ROM.
Comes with some refactoring of code and renaming of files. All modules
are now named mod*.[ch].
diff --git a/py/mpconfig.h b/py/mpconfig.h
index 5b13c46..09cc379 100644
--- a/py/mpconfig.h
+++ b/py/mpconfig.h
@@ -125,10 +125,16 @@
#define MICROPY_PATH_MAX (512)
#endif
-// Additional builtin function definitions - see runtime.c:builtin_table for format.
+// Additional builtin function definitions - see builtintables.c:builtin_object_table for format.
#ifndef MICROPY_EXTRA_BUILTINS
#define MICROPY_EXTRA_BUILTINS
#endif
+
+// Additional builtin module definitions - see builtintables.c:builtin_module_table for format.
+#ifndef MICROPY_EXTRA_BUILTIN_MODULES
+#define MICROPY_EXTRA_BUILTIN_MODULES
+#endif
+
/*****************************************************************************/
/* Miscellaneous settings */