Pacify IAR warnings for side-effects.
[bertos.git] / cfg / cpu.h
index c69b9c6f02129472c96de7de277361b21e09ba49..51b142d6157bfd04e0573bb4f1a789e4f76bd9a3 100755 (executable)
--- a/cfg/cpu.h
+++ b/cfg/cpu.h
 
 /*#*
  *#* $Log$
+ *#* Revision 1.7  2005/11/27 03:04:38  bernie
+ *#* Add POSIX emulation for IRQ_* macros; Add Qt support.
+ *#*
+ *#* Revision 1.6  2005/07/19 07:26:49  bernie
+ *#* Add missing #endif.
+ *#*
  *#* Revision 1.5  2005/06/27 21:24:17  bernie
  *#* CPU_CSOURCE(): New macro.
  *#*
 #elif CPU_X86
 
        #define NOP                     asm volatile ("nop")
-       #define IRQ_DISABLE             FIXME
-       #define IRQ_ENABLE              FIXME
-       #define IRQ_SAVE_DISABLE(x)     FIXME
-       #define IRQ_RESTORE(x)          FIXME
 
-       typedef uint32_t cpuflags_t; // FIXME
+       /* Get IRQ_* definitions from the hosting environment. */
+       #include <cfg/os.h>
+       #if OS_EMBEDDED
+               #define IRQ_DISABLE             FIXME
+               #define IRQ_ENABLE              FIXME
+               #define IRQ_SAVE_DISABLE(x)     FIXME
+               #define IRQ_RESTORE(x)          FIXME
+               typedef uint32_t cpuflags_t; // FIXME
+       #endif /* OS_EMBEDDED */
+
 
        #define CPU_REGS_CNT            7
        #define CPU_STACK_GROWS_UPWARD  0
 
 #elif CPU_PPC
        #define NOP                 asm volatile ("nop" ::)
+
        #define IRQ_DISABLE         FIXME
        #define IRQ_ENABLE          FIXME
        #define IRQ_SAVE_DISABLE(x) FIXME
 #else /* CPU_REG_BITS > 32 */
        #define SIZEOF_PTR   8
 #endif
+#endif
 
 #ifndef CPU_BITS_PER_CHAR
 #define CPU_BITS_PER_CHAR   (SIZEOF_CHAR * 8)