mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
372 B
C
17 lines
372 B
C
/*
|
|
* cpu.h - mc1322x specific definitions
|
|
* Copyright (C) 2013 Oliver Hahm <oliver.hahm@inria.fr>
|
|
*
|
|
* This source code is licensed under the GNU General Public License,
|
|
* Version 3. See the file LICENSE for more details.
|
|
*/
|
|
|
|
#ifndef CPU_H
|
|
#define CPU_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uintptr_t __stack_start; ///< end of user stack memory space
|
|
|
|
#endif /* CPU_H */
|