circuitpython/tests/micropython/viper_ptr16_load.py
Damien George 91cfd414c0 py: Implement native load for viper.
Viper can now do: ptr8(buf)[0], which loads a byte from a buffer using
machine instructions.
2014-10-12 16:59:29 +01:00

19 lines
331 B
Python

# test loading from ptr16 type
# only works on little endian machines
@micropython.viper
def get(src:ptr16) -> int:
return src[0]
@micropython.viper
def memadd(src:ptr16, n:int) -> int:
sum = 0
for i in range(n):
sum += src[i]
return sum
b = bytearray(b'1234')
print(b)
print(get(b))
print(memadd(b, 2))