stkarm/src/dbg.s

19 lines
223 B
ArmAsm
Raw Normal View History

2018-12-28 10:30:39 +00:00
.text
.extern c_printk
.global printk
printk:
push {lr}
/* disables IRQ and FIR in CPU */
cpsid if
/* C-Implementation */
bl c_printk
/* enables IRQ and FIR in CPU */
cpsie if
pop {pc}