aboutsummaryrefslogtreecommitdiff
path: root/tests/micropython/viper_ptr8_store.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/viper_ptr8_store.py')
-rw-r--r--tests/micropython/viper_ptr8_store.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/micropython/viper_ptr8_store.py b/tests/micropython/viper_ptr8_store.py
new file mode 100644
index 000000000..fc24290c9
--- /dev/null
+++ b/tests/micropython/viper_ptr8_store.py
@@ -0,0 +1,29 @@
+# test ptr8 type
+
+@micropython.viper
+def set(dest:ptr8, val:int):
+ dest[0] = val
+
+@micropython.viper
+def memset(dest:ptr8, val:int, n:int):
+ for i in range(n):
+ dest[i] = val
+
+@micropython.viper
+def memset2(dest_in, val:int):
+ dest = ptr8(dest_in)
+ n = int(len(dest_in))
+ for i in range(n):
+ dest[i] = val
+
+b = bytearray(4)
+print(b)
+
+set(b, 42)
+print(b)
+
+memset(b, 43, len(b))
+print(b)
+
+memset2(b, 44)
+print(b)