blob: ff0c371ab8c0d417471080363e81301f556c3a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# test store to ptr32 type
@micropython.viper
def set(dest: ptr32, val: int):
dest[0] = val
@micropython.viper
def set1(dest: ptr32, val: int):
dest[1] = val
@micropython.viper
def memset(dest: ptr32, val: int, n: int):
for i in range(n):
dest[i] = val
@micropython.viper
def memset2(dest_in, val: int):
dest = ptr32(dest_in)
n = int(len(dest_in)) >> 2
for i in range(n):
dest[i] = val
b = bytearray(8)
print(b)
set(b, 0x42424242)
print(b)
set1(b, 0x43434343)
print(b)
memset(b, 0x44444444, len(b) // 4)
print(b)
memset2(b, 0x45454545)
print(b)
|