modmachine: Add new module to access hardware, starting with physical memory.
Refactored from "stm" module, provides mem8, mem16, mem32 objects with
array subscript syntax.
diff --git a/py/objmodule.c b/py/objmodule.c
index 4707d5b..c67a9b2 100644
--- a/py/objmodule.c
+++ b/py/objmodule.c
@@ -183,6 +183,9 @@
#if MICROPY_PY_UBINASCII
{ MP_OBJ_NEW_QSTR(MP_QSTR_ubinascii), (mp_obj_t)&mp_module_ubinascii },
#endif
+#if MICROPY_PY_MACHINE
+ { MP_OBJ_NEW_QSTR(MP_QSTR_machine), (mp_obj_t)&mp_module_machine },
+#endif
// extra builtin modules as defined by a port
MICROPY_PORT_BUILTIN_MODULES