/*===============================================================*//** @file main.cpp @brief アプリケーションエントリー @author Kazumasa Hirata *//*================================================================*/ //**************************************************************************** // Include //**************************************************************************** #include #include "FontView.h" //**************************************************************************** // Code //**************************************************************************** /*------------------------------------------------*//** * @brief プログラムはここからはじまる。 *//*------------------------------------------------*/ void NitroMain() { OS_Printf("Welcome to CodeWarrior for NINTENDO DS\n"); FontView(); //本来ここにはこない OS_Terminate(); }