From: bernie Date: Mon, 18 Feb 2008 15:22:53 +0000 (+0000) Subject: Support 64bit CPUs X-Git-Tag: 1.0.0~128 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=384c235db40d6638b81f323e8b3b4a5a8363485e;p=bertos.git Support 64bit CPUs git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1124 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/config_kern.h b/config_kern.h index 2dcbae90..c703b4de 100644 --- a/config_kern.h +++ b/config_kern.h @@ -142,6 +142,10 @@ /* 16bit cpustack_t */ #define CONFIG_KERN_STACKFILLCODE 0xA5A5A5A5UL #define CONFIG_KERN_MEMFILLCODE 0xDBDBDBDBUL + #elif (SIZEOF_CPUSTACK_T == 8) + /* 16bit cpustack_t */ + #define CONFIG_KERN_STACKFILLCODE 0xA5A5A5A5A5A5A5A5UL + #define CONFIG_KERN_MEMFILLCODE 0xDBDBDBDBDBDBDBDBUL #else #error No cpustack_t size supported! #endif