aboutsummaryrefslogtreecommitdiff
path: root/py/bc0.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-06-13 22:00:10 +0100
committerDamien George <damien.p.george@gmail.com>2015-06-13 23:36:30 +0100
commitc5029bcbf37fd1a3fb145d9fa9e4a5094478f17b (patch)
tree3f5f37bbf827d9b1ca302a5492e6522090998076 /py/bc0.h
parent6f4952004207a249a437dc822c5252422f63cc69 (diff)
py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
Diffstat (limited to 'py/bc0.h')
-rw-r--r--py/bc0.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/bc0.h b/py/bc0.h
index 2dfdc7011..0a2d9092f 100644
--- a/py/bc0.h
+++ b/py/bc0.h
@@ -117,6 +117,6 @@
#define MP_BC_LOAD_FAST_MULTI (0xb0) // + N(16)
#define MP_BC_STORE_FAST_MULTI (0xc0) // + N(16)
#define MP_BC_UNARY_OP_MULTI (0xd0) // + op(6)
-#define MP_BC_BINARY_OP_MULTI (0xd6) // + op(35)
+#define MP_BC_BINARY_OP_MULTI (0xd6) // + op(36)
#endif // __MICROPY_INCLUDED_PY_BC0_H__