xref: /nrf52832-nimble/rt-thread/libcpu/mips/xburst/stack.h (revision 104654410c56c573564690304ae786df310c91fc)
1*10465441SEvalZero /*
2*10465441SEvalZero  * File      : stack.h
3*10465441SEvalZero  * COPYRIGHT (C) 2008 - 2016, RT-Thread Development Team
4*10465441SEvalZero  *
5*10465441SEvalZero  *  This program is free software; you can redistribute it and/or modify
6*10465441SEvalZero  *  it under the terms of the GNU General Public License as published by
7*10465441SEvalZero  *  the Free Software Foundation; either version 2 of the License, or
8*10465441SEvalZero  *  (at your option) any later version.
9*10465441SEvalZero  *
10*10465441SEvalZero  *  This program is distributed in the hope that it will be useful,
11*10465441SEvalZero  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12*10465441SEvalZero  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13*10465441SEvalZero  *  GNU General Public License for more details.
14*10465441SEvalZero  *
15*10465441SEvalZero  *  You should have received a copy of the GNU General Public License along
16*10465441SEvalZero  *  with this program; if not, write to the Free Software Foundation, Inc.,
17*10465441SEvalZero  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18*10465441SEvalZero  *
19*10465441SEvalZero  * Change Logs:
20*10465441SEvalZero  * Date           Author       Notes
21*10465441SEvalZero */
22*10465441SEvalZero 
23*10465441SEvalZero #ifndef __STACK_H__
24*10465441SEvalZero #define __STACK_H__
25*10465441SEvalZero 
26*10465441SEvalZero #define SYSTEM_STACK          0x80003fe8		/* the kernel system stack address */
27*10465441SEvalZero 
28*10465441SEvalZero #endif
29