mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 01:40:34 +02:00
Only IPSR and BASEPRI special registers supported at the moment, but easy to extend in the future.
12 lines
158 B
Python
12 lines
158 B
Python
@micropython.asm_thumb
|
|
def getIPSR():
|
|
mrs(r0, IPSR)
|
|
|
|
@micropython.asm_thumb
|
|
def getBASEPRI():
|
|
mrs(r0, BASEPRI)
|
|
|
|
print(getBASEPRI())
|
|
print(getIPSR())
|
|
|