The unified diff between revisions [cc8258a6..] and [4cc7246c..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'swi.h'

#
# old_revision [cc8258a6c3643514892e84cf24fed008bc6f9660]
# new_revision [4cc7246c1b6c809c9dc15997798f6deed15b3631]
#
# add_file "swi.h"
#  content [1198af2b0bcc19ab77033a4a390f0a2f32bc9305]
#
============================================================
--- /dev/null	
+++ swi.h	1198af2b0bcc19ab77033a4a390f0a2f32bc9305
@@ -0,0 +1,10 @@
+#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 */