FreeCalypso > hg > freecalypso-sw
view gsm-fw/bsp/irq_twiddle.S @ 700:2913c4fdd34a
top level README: describe the project at a higher level
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 02 Oct 2014 00:06:50 +0000 |
parents | 8be182dd9218 |
children |
line wrap: on
line source
/* * TI's L1 code (and possibly other parts of the software suite) calls * functions named INT_DisableIRQ() and INT_EnableIRQ(); in the Leonardo * fw they are implemented (in a very ugly manner, as usual) in the * int.s entry point assembly module. Here we implement the same * functions in a cleaner way. */ #include "../nucleus/asm_defs.h" .code 32 .text .globl INT_DisableIRQ INT_DisableIRQ: mrs r0, CPSR orr r0, r0, #LOCKOUT msr CPSR, r0 bx lr .globl INT_EnableIRQ INT_EnableIRQ: mrs r0, CPSR bic r0, r0, #LOCKOUT msr CPSR, r0 bx lr