diff options
Diffstat (limited to 'docs/develop')
-rw-r--r-- | docs/develop/cmodules.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/develop/cmodules.rst b/docs/develop/cmodules.rst index 75dbc953c..c5aa919b7 100644 --- a/docs/develop/cmodules.rst +++ b/docs/develop/cmodules.rst @@ -59,7 +59,7 @@ A MicroPython user C module is a directory with the following files: SRC_USERMOD_LIB_C += $(EXAMPLE_MOD_DIR)/utils/algorithm.c Similarly, use ``SRC_USERMOD_CXX`` and ``SRC_USERMOD_LIB_CXX`` for C++ - source files. + source files. If you want to include assembly files use ``SRC_USERMOD_LIB_ASM``. If you have custom compiler options (like ``-I`` to add directories to search for header files), these should be added to ``CFLAGS_USERMOD`` for C code |