You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
308 B
16 lines
308 B
@micropython.asm_thumb
|
|
def sdiv(r0, r1):
|
|
sdiv(r0, r0, r1)
|
|
|
|
@micropython.asm_thumb
|
|
def udiv(r0, r1):
|
|
udiv(r0, r0, r1)
|
|
|
|
print(sdiv(1234, 3))
|
|
print(sdiv(-1234, 3))
|
|
print(sdiv(1234, -3))
|
|
print(sdiv(-1234, -3))
|
|
|
|
print(udiv(1234, 3))
|
|
print(udiv(0xffffffff, 0x7fffffff))
|
|
print(udiv(0xffffffff, 0xffffffff))
|
|
|