From 56411b62f4544336b2b8d61d2ba1eb27f4fb7160 Mon Sep 17 00:00:00 2001 From: kamikawa Date: Mon, 21 Apr 2008 05:48:24 +0000 Subject: [PATCH] =?UTF-8?q?Host=20I/O=20=E9=96=A2=E9=80=A3=E3=81=AE?= =?UTF-8?q?=E3=82=B3=E3=83=BC=E3=83=89=E3=81=8C=E6=AE=8B=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=9F=E3=81=9F=E3=82=81=E5=89=8A=E9=99=A4=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@1195 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- .../ImportJump/ARM9.TWL/Makefile | 2 -- .../ImportJump/ARM9.TWL/src/main.c | 19 ------------------- 2 files changed, 21 deletions(-) diff --git a/build/systemMenu_RED/ImportJump/ARM9.TWL/Makefile b/build/systemMenu_RED/ImportJump/ARM9.TWL/Makefile index 1bee4833..a2c509f8 100644 --- a/build/systemMenu_RED/ImportJump/ARM9.TWL/Makefile +++ b/build/systemMenu_RED/ImportJump/ARM9.TWL/Makefile @@ -49,8 +49,6 @@ SRCS = main.c \ import.c \ hwi.c -SRCS += $(ROOT)/build/tests/debugger/fio/src/fs_archive_hostio.c - LINCLUDES = ../common/include \ $(ROOT)/build/libraries/lcfg/ARM9.TWL/include \ $(ROOT)/build/libraries/fs/common/include diff --git a/build/systemMenu_RED/ImportJump/ARM9.TWL/src/main.c b/build/systemMenu_RED/ImportJump/ARM9.TWL/src/main.c index f4dde22b..48acd303 100644 --- a/build/systemMenu_RED/ImportJump/ARM9.TWL/src/main.c +++ b/build/systemMenu_RED/ImportJump/ARM9.TWL/src/main.c @@ -38,8 +38,6 @@ char sTadPath[FS_ENTRY_LONGNAME_MAX]; *---------------------------------------------------------------------------*/ static void VBlankIntr(void); static void InitAllocation(void); -static BOOL IgnoreRemoval(void); -extern void FS_MountHostIO(const char *basepath); /*---------------------------------------------------------------------------* Name: TwlMain @@ -180,20 +178,3 @@ static void InitAllocation(void) OS_Panic("ARM9: Fail to create heap...\n"); hh = OS_SetCurrentHeap(OS_ARENA_MAIN, hh); } - -/*---------------------------------------------------------------------------* - Name: IgnoreRemoval - - Description: カード抜けコールバック - - Arguments: None. - - Returns: None. - *---------------------------------------------------------------------------*/ -// 現時点ではカード割り込みをHIO通知に使用しているようなので -// カード抜け誤検出を無視するようにしてテストを作成している。 -static BOOL IgnoreRemoval(void) -{ - OS_TWarning("detected CARD-removal!(miss-notification from debugger Host-I/O)\n"); - return FALSE; -}