3dc324d3f1
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
42 lines
574 B
Python
42 lines
574 B
Python
# test ptr16 type
|
|
|
|
|
|
@micropython.viper
|
|
def set(dest: ptr16, val: int):
|
|
dest[0] = val
|
|
|
|
|
|
@micropython.viper
|
|
def set1(dest: ptr16, val: int):
|
|
dest[1] = val
|
|
|
|
|
|
@micropython.viper
|
|
def memset(dest: ptr16, val: int, n: int):
|
|
for i in range(n):
|
|
dest[i] = val
|
|
|
|
|
|
@micropython.viper
|
|
def memset2(dest_in, val: int):
|
|
dest = ptr16(dest_in)
|
|
n = int(len(dest_in)) >> 1
|
|
for i in range(n):
|
|
dest[i] = val
|
|
|
|
|
|
b = bytearray(4)
|
|
print(b)
|
|
|
|
set(b, 0x4242)
|
|
print(b)
|
|
|
|
set1(b, 0x4343)
|
|
print(b)
|
|
|
|
memset(b, 0x4444, len(b) // 2)
|
|
print(b)
|
|
|
|
memset2(b, 0x4545)
|
|
print(b)
|