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/py.mk | |
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/py.mk')
-rw-r--r-- | py/py.mk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -118,6 +118,7 @@ PY_O_BASENAME = \ ../extmod/moduheapq.o \ ../extmod/moduhashlib.o \ ../extmod/modubinascii.o \ + ../extmod/modmachine.o \ # prepend the build destination prefix to the py object files PY_O = $(addprefix $(PY_BUILD)/, $(PY_O_BASENAME)) |