diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-05-03 20:25:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-05-04 13:05:12 +0300 |
commit | 0116218fa89cc88d5d5ed7291c4f8d3412f78543 (patch) | |
tree | 6061dec7ff8f02670d8353effa5a121140bdd05d /py/builtin.h | |
parent | c4dc1b5c230e2383ea2975d0afd34e11d23ead5d (diff) | |
download | micropython-0116218fa89cc88d5d5ed7291c4f8d3412f78543.tar.gz micropython-0116218fa89cc88d5d5ed7291c4f8d3412f78543.zip |
modmachine: Add new module to access hardware, starting with physical memory.
Refactored from "stm" module, provides mem8, mem16, mem32 objects with
array subscript syntax.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/builtin.h b/py/builtin.h index db3ba63785..6bec64fdcf 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -101,5 +101,6 @@ extern const mp_obj_module_t mp_module_ure; extern const mp_obj_module_t mp_module_uheapq; extern const mp_obj_module_t mp_module_uhashlib; extern const mp_obj_module_t mp_module_ubinascii; +extern const mp_obj_module_t mp_module_machine; #endif // __MICROPY_INCLUDED_PY_BUILTIN_H__ |