mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@120 7061adef-622a-194b-ae81-725974e89856
33 lines
933 B
C++
33 lines
933 B
C++
/*===============================================================*//**
|
|
@file main.cpp
|
|
|
|
@brief アプリケーションエントリー
|
|
|
|
@author Kazumasa Hirata
|
|
|
|
*//*================================================================*/
|
|
|
|
//****************************************************************************
|
|
// Include
|
|
//****************************************************************************
|
|
#include <nitro.h>
|
|
|
|
#include "FontView.h"
|
|
|
|
//****************************************************************************
|
|
// Code
|
|
//****************************************************************************
|
|
|
|
/*------------------------------------------------*//**
|
|
* @brief プログラムはここからはじまる。
|
|
*//*------------------------------------------------*/
|
|
void NitroMain()
|
|
{
|
|
OS_Printf("Welcome to CodeWarrior for NINTENDO DS\n");
|
|
|
|
FontView();
|
|
|
|
//本来ここにはこない
|
|
OS_Terminate();
|
|
}
|