CM3: allow to define function in RAM by the RAM_FUNC macro
authorarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 9 Feb 2011 15:23:45 +0000 (15:23 +0000)
committerarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 9 Feb 2011 15:23:45 +0000 (15:23 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4691 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/attr.h

index c8090f955c021828db2cf242149bcd64b9b82e84..7374534185ba18414a292dcba046c3a443cd3ac8 100644 (file)
        #define PAUSE       asm volatile ("wfi" ::: "memory")
        #define BREAKPOINT  /* asm("bkpt 0") DOES NOT WORK */
 
+       /*
+        * Function attribute to move it into ram memory.
+        */
+       #define RAM_FUNC __attribute__((section(".data")))
+
 #elif CPU_PPC
 
        #define CPU_REG_BITS           (CPU_PPC32 ? 32 : 64)