From 384c235db40d6638b81f323e8b3b4a5a8363485e Mon Sep 17 00:00:00 2001 From: bernie Date: Mon, 18 Feb 2008 15:22:53 +0000 Subject: [PATCH] Support 64bit CPUs git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1124 38d2e660-2303-0410-9eaa-f027e97ec537 --- config_kern.h | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.25.1