Rename rt_* to mp_*.
Mostly just a global search and replace. Except rt_is_true which
becomes mp_obj_is_true.
Still would like to tidy up some of the names, but this will do for now.
diff --git a/py/objnone.c b/py/objnone.c
index 3fccd88..c79c818 100644
--- a/py/objnone.c
+++ b/py/objnone.c
@@ -17,7 +17,7 @@
STATIC mp_obj_t none_unary_op(int op, mp_obj_t o_in) {
switch (op) {
- case RT_UNARY_OP_BOOL: return mp_const_false;
+ case MP_UNARY_OP_BOOL: return mp_const_false;
default: return MP_OBJ_NULL; // op not supported for None
}
}