1 parent 404dae8 commit 20f85feCopy full SHA for 20f85fe
1 file changed
extmod/moductypes.c
@@ -329,6 +329,7 @@ STATIC mp_obj_t get_aligned(uint val_type, void *p, mp_int_t index) {
329
case INT32:
330
return mp_obj_new_int(((int32_t*)p)[index]);
331
case UINT64:
332
+ return mp_obj_new_int_from_ull(((uint64_t*)p)[index]);
333
case INT64:
334
return mp_obj_new_int_from_ll(((int64_t*)p)[index]);
335
#if MICROPY_PY_BUILTINS_FLOAT
0 commit comments