source: EcnlProtoTool/trunk/asp3_dcre/arch/arm_gcc/rza1/chip_stddef.h

Last change on this file was 429, checked in by coas-nagasima, 4 years ago

ASP3, TINET, mbed を更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 986 bytes
Line 
1/*
2 * t_stddef.hのチップ依存部(RZ/A1用)
3 *
4 * このヘッダファイルは,target_stddef.h(または,そこからインクルード
5 * されるファイル)のみからインクルードされる.他のファイルから直接イ
6 * ンクルードしてはならない.
7 *
8 * $Id$
9 */
10
11#ifndef TOPPERS_CHIP_STDDEF_H
12#define TOPPERS_CHIP_STDDEF_H
13
14/*
15 * ターゲットを識別するためのマクロの定義
16 */
17#define TOPPERS_RZA1 /* チップ略称 */
18
19/*
20 * チップを限定するマクロが定義されているかのチェック
21 */
22#if !defined(TOPPERS_RZA1H) && !defined(TOPPERS_RZA1L)
23#error Either TOPPERS_RZA1H or TOPPERS_RZA1L must be defined.
24#endif
25
26/*
27 * 開発環境で共通な定義
28 */
29#ifndef TOPPERS_MACRO_ONLY
30#include <stdint.h>
31#endif /* TOPPERS_MACRO_ONLY */
32
33#define TOPPERS_STDFLOAT_TYPE1
34#include "tool_stddef.h"
35
36/*
37 * コアで共通な定義
38 */
39#include "core_stddef.h"
40
41#endif /* TOPPERS_CHIP_STDDEF_H */
Note: See TracBrowser for help on using the repository browser.