# test loading from ptr16 type# only works on little endian machines@micropython.viperdefget(src:ptr16)->int:returnsrc[0]@micropython.viperdefmemadd(src:ptr16,n:int)->int:sum=0foriinrange(n):sum+=src[i]returnsumb=bytearray(b'1234')print(b)print(get(b))print(memadd(b,2))