Namco system 246/256 support#19
Conversation
|
Can you verify if the generated artifact works for you on a retail console? |
usb should not be affected On emulator it boots file (with COH-H31100 boot rom) I could check tomorrow on my SCPH-50009 |
|
I see you are using the vfat driver instead of fatfs. I havent used that one in any of my programs, I always use fatfs. |
Hmm, good catch. I'll try using fatfs instead. |
I would also recommend the USB wait approach made by fjtrujy struct stat buffer;
int ret = -1;
int retries = 50;
while (ret != 0 && retries > 0) {
ret = stat("mass:/", &buffer);
/* Wait until the device is ready */
nopdelay();
retries--;
}
|
this makes sure CDVD RPC is setup by the time program tries to retrieve console model number
|
I'm currently waiting for @fjtrujy to test his ps2_drivers usb sample. I'm currently unable to get it, and using fatfs directly, to work for me. |
No hurry. |
Mostly because ps2ident is complicated to maintain and because we currently don't have any means of dumping the arcade flash memory