mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 10:55:33 +00:00
Use filesystem drivers
This commit is contained in:
parent
f836b465aa
commit
381312a02a
|
@ -17,9 +17,7 @@
|
||||||
#include <sifrpc.h>
|
#include <sifrpc.h>
|
||||||
#include <iopcontrol.h>
|
#include <iopcontrol.h>
|
||||||
#include <sbv_patches.h>
|
#include <sbv_patches.h>
|
||||||
#include <ps2_fileXio_driver.h>
|
#include <ps2_filesystem_driver.h>
|
||||||
#include <ps2_memcard_driver.h>
|
|
||||||
#include <ps2_usb_driver.h>
|
|
||||||
|
|
||||||
#ifdef main
|
#ifdef main
|
||||||
#undef main
|
#undef main
|
||||||
|
@ -45,29 +43,12 @@ static void prepare_IOP()
|
||||||
|
|
||||||
static void init_drivers()
|
static void init_drivers()
|
||||||
{
|
{
|
||||||
init_memcard_driver(true);
|
init_ps2_filesystem_driver();
|
||||||
init_usb_driver(true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void deinit_drivers()
|
static void deinit_drivers()
|
||||||
{
|
{
|
||||||
deinit_usb_driver(true);
|
deinit_ps2_filesystem_driver();
|
||||||
deinit_memcard_driver(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void waitUntilDeviceIsReady(char *path)
|
|
||||||
{
|
|
||||||
struct stat buffer;
|
|
||||||
int ret = -1;
|
|
||||||
int retries = 50;
|
|
||||||
|
|
||||||
while (ret != 0 && retries > 0) {
|
|
||||||
ret = stat(path, &buffer);
|
|
||||||
/* Wait until the device is ready */
|
|
||||||
nopdelay();
|
|
||||||
|
|
||||||
retries--;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
|
|
Loading…
Reference in a new issue