stkarm/src/dbg.s

19 lines
223 B
ArmAsm

.text
.extern c_printk
.global printk
printk:
push {lr}
/* disables IRQ and FIQ in CPU */
cpsid if
/* C-Implementation */
bl c_printk
/* enables IRQ and FIQ in CPU */
cpsie if
pop {pc}