diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-03-25 14:18:18 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-03-25 14:18:18 +0000 |
| commit | caac542b235003f7b79d7aa23eaebe8f2c772508 (patch) | |
| tree | f70b42312f091b10c9e3d871fe1a70d573e7cba4 /py/mpconfig.h | |
| parent | 1dfde891e3e26543da6d42215da6a23c32b0a8bc (diff) | |
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].
Diffstat (limited to 'py/mpconfig.h')
| -rw-r--r-- | py/mpconfig.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 5b13c4648..09cc37913 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -125,10 +125,16 @@ typedef double mp_float_t; #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 */ |
