summaryrefslogtreecommitdiffstatshomepage
path: root/tests/inlineasm/asmshift.py
blob: ba4c21b3f21528437059b6625efd038805b14a65 (plain) (blame)
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
42
43
44
45
46
@micropython.asm_thumb
def lsl1(r0):
    lsl(r0, r0, 1)


print(hex(lsl1(0x123)))


@micropython.asm_thumb
def lsl23(r0):
    lsl(r0, r0, 23)


print(hex(lsl23(1)))


@micropython.asm_thumb
def lsr1(r0):
    lsr(r0, r0, 1)


print(hex(lsr1(0x123)))


@micropython.asm_thumb
def lsr31(r0):
    lsr(r0, r0, 31)


print(hex(lsr31(0x80000000)))


@micropython.asm_thumb
def asr1(r0):
    asr(r0, r0, 1)


print(hex(asr1(0x123)))


@micropython.asm_thumb
def asr31(r0):
    asr(r0, r0, 31)


print(hex(asr31(0x80000000)))