/********************************************************************* * Copyright (C) 2003 Tord Lindstrom (pukko@home.se) * This file is subject to the terms and conditions of the PS2Link License. * See the file LICENSE in the main directory of this distribution for more * details. */ #include #include #include #include #include #include #if 0 /* EEUG: WHY ? */ #include #endif // Entry points extern int fsysMount(void); //////////////////////////////////////////////////////////////////////// // main // start threads & init rpc & filesys int _start( int argc, char **argv) { FlushDcache(); CpuEnableIntr(0); #if 0 /* EEUG: what the hell these two are doing here ? */ sceCdInit(1); sceCdStop(); #endif SifInitRpc(0); fsysMount(); return 0; }