Spacing fix.
[bertos.git] / cfg / cpu.h
index 75ea08630a6c38a6185cf2e1c968c880e2d0410a..b008247f0164fc2873ddf4cec316a95f3be94215 100755 (executable)
--- a/cfg/cpu.h
+++ b/cfg/cpu.h
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2006/03/20 17:49:00  bernie
+ *#* Spacing fix.
+ *#*
+ *#* Revision 1.10  2006/02/24 01:17:30  bernie
+ *#* CPU_SAVED_REGS_CNT: Declare for x86/x86_64.
+ *#*
  *#* Revision 1.9  2006/02/23 09:08:43  bernie
  *#* Add note for a frequently reported non-bug.
  *#*
 
 
        #define CPU_REGS_CNT            7
+       #define CPU_SAVED_REGS_CNT      7
        #define CPU_STACK_GROWS_UPWARD  0
        #define CPU_SP_ON_EMPTY_SLOT    0
        #define CPU_BYTE_ORDER          CPU_LITTLE_ENDIAN
 
 #else
        #define CPU_PUSH_CALL_CONTEXT(sp, func) \
-               CPU_PUSH_WORD((sp), (func))
+               CPU_PUSH_WORD((sp), (cpustack_t)(func))
 #endif