From 195a3c880ff4ae9f274f8c323cf0958bfae42c5b Mon Sep 17 00:00:00 2001 From: kamikawa Date: Tue, 18 Mar 2008 12:15:43 +0000 Subject: [PATCH] =?UTF-8?q?process=5Fformat.c=20=E3=81=AB=E3=81=8A?= =?UTF-8?q?=E3=81=84=E3=81=A6=20DUMP=5FNAND=5FTREE=20=E3=82=92=20define=20?= =?UTF-8?q?=E3=81=99=E3=82=8B=E3=81=A8=20NAND=20=E3=82=92=E3=83=95?= =?UTF-8?q?=E3=82=A9=E3=83=BC=E3=83=9E=E3=83=83=E3=83=88=E3=81=99=E3=82=8B?= =?UTF-8?q?=E5=89=8D=E3=81=A8=E5=BE=8C=E3=81=AE=E3=83=84=E3=83=AA=E3=83=BC?= =?UTF-8?q?=E6=83=85=E5=A0=B1=E3=82=92=E5=87=BA=E5=8A=9B=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=81=93=E3=81=A8=E3=81=8C=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=99?= =?UTF-8?q?=E3=80=82=20NandInitializer/NandFormatter=20=E3=81=AE=E6=8C=99?= =?UTF-8?q?=E5=8B=95=E3=82=92=E7=A2=BA=E8=AA=8D=E3=81=97=E3=81=9F=E3=81=84?= =?UTF-8?q?=E6=96=B9=E3=81=AF=E6=98=AF=E9=9D=9E=E6=98=AF=E9=9D=9E=E3=81=8A?= =?UTF-8?q?=E8=A9=A6=E3=81=97=E3=81=8F=E3=81=A0=E3=81=95=E3=81=84=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@906 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- .../NandInitializer/ARM9.TWL/src/process_format.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build/systemMenu_RED/NandInitializer/ARM9.TWL/src/process_format.c b/build/systemMenu_RED/NandInitializer/ARM9.TWL/src/process_format.c index 0eea1723..0e2f88f0 100644 --- a/build/systemMenu_RED/NandInitializer/ARM9.TWL/src/process_format.c +++ b/build/systemMenu_RED/NandInitializer/ARM9.TWL/src/process_format.c @@ -49,8 +49,8 @@ enum { 定数定義 *---------------------------------------------------------------------------*/ -// NANDの簡易フォーマットを実行する際に -// ツリー情報を出力する場合は定義します +// NANDの簡易フォーマットを実行する際にツリー情報を出力する場合は定義します。 +// //#define DUMP_NAND_TREE #define DOT_OF_MENU_SPACE 16 @@ -200,6 +200,9 @@ void* FormatProcess2(void) { case MENU_EASY_FORMAT: // 簡易フォーマット #ifdef DUMP_NAND_TREE + OS_Printf("---------------------------------------\n"); + OS_Printf(" Before \n"); + OS_Printf("---------------------------------------\n"); NAMUT_DrawNandTree(); #endif kamiFontPrintf(24, y_pos, FONT_COLOR_BLACK, " WAIT"); @@ -215,6 +218,9 @@ void* FormatProcess2(void) } #ifdef DUMP_NAND_TREE OS_Printf("\n"); + OS_Printf("---------------------------------------\n"); + OS_Printf(" After \n"); + OS_Printf("---------------------------------------\n"); NAMUT_DrawNandTree(); #endif return FormatProcess1;