Complete coding of M16C port

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1510 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2009-02-17 02:53:24 +00:00
parent 2c7e99fd96
commit c840ae9487
2 changed files with 8 additions and 6 deletions

View File

@ -98,12 +98,6 @@ extern uint32 *current_regs;
*/
extern uint32 g_heapbase;
/* Address of the saved user stack pointer */
#if CONFIG_ARCH_INTERRUPTSTACK > 3
extern uint32 g_userstack;
#endif
#endif
/****************************************************************************

View File

@ -59,6 +59,14 @@
* Public Data
************************************************************************************/
/* Address of the saved user stack pointer */
#ifndef __ASSEMBLY__
# if CONFIG_ARCH_INTERRUPTSTACK > 3
extern uint32 g_userstack;
# endif
#endif
/************************************************************************************
* Public Functions
************************************************************************************/