mirror of
https://github.com/rvtr/ntr_bootrom.git
synced 2025-10-31 07:11:11 -04:00
34 lines
890 B
C
34 lines
890 B
C
//======================================================================
|
|
// IrisSubpTarget.h
|
|
// IRISターゲット選択
|
|
//
|
|
// Copyright (C) 2003 NINTENDO Co.,Ltd.
|
|
//======================================================================
|
|
#ifndef _IRIS_SUBP_TARGET_H
|
|
#define _IRIS_SUBP_TARGET_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
//#define IRIS_BB // ブレッドボード専用定義への切り換え
|
|
//#define IRIS_TEG // TEGボード専用定義への切り換え
|
|
#define IRIS_TS // TS専用定義への切り換え
|
|
|
|
#define MMEM_4M // メインメモリ4M本体用定義への切り換え
|
|
|
|
#ifdef NDEBUG
|
|
#else
|
|
//#define ENABLE_DBGLIB // デバッグライブラリを使用します
|
|
#endif
|
|
|
|
//#define NSYNC_MAINP // メインプロセッサと同期を取らない場合
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // _IRIS_SUBP_TARGET_H
|