瀏覽代碼

fix compiling error

weety 11 年之前
父節點
當前提交
36c4604a36
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      libcpu/arm/arm926/stack.c

+ 12 - 0
libcpu/arm/arm926/stack.c

@@ -13,6 +13,18 @@
  */
 #include <rtthread.h>
 
+/*****************************/
+/* CPU Mode                  */
+/*****************************/
+#define USERMODE		0x10
+#define FIQMODE			0x11
+#define IRQMODE			0x12
+#define SVCMODE			0x13
+#define ABORTMODE		0x17
+#define UNDEFMODE		0x1b
+#define MODEMASK		0x1f
+#define NOINT			0xc0
+
 /**
  * This function will initialize thread stack
  *