Quadrotor from scratch
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.
 
 
 
 
 

10 lines
198 B

#ifndef __SWI_H
#define __SWI_H
#define SWI_INTERRUPT_BLOCK 0
#define SWI_INTERRUPT_UNBLOCK 1
#define swi_call(x) swi_call_(x)
#define swi_call_(x) __asm(" swi " #x "\n")
#endif /* __SWI_H */