| View previous topic :: View next topic |
| Author |
Message |
ghostboy78
Joined: 24 Jul 2006 Posts: 22
|
Posted: Fri Apr 11, 2008 8:24 am Post subject: Loading .IRX from computer to PS2 |
|
|
Ive had a hard time with this and now its starting to make me mad...
My EE program is trying to load two .IRX files from my computer so that the pads can be used in the program. Does anybody know what format these should be loaded in?
so far ive got "host0:\\PADMAN.IRX";
but the above doesn't work. I'm using X-Link to run my .elf _________________ :D |
|
| Back to top |
|
 |
cosmito
Joined: 04 Mar 2007 Posts: 314 Location: Portugal
|
|
| Back to top |
|
 |
ghostboy78
Joined: 24 Jul 2006 Posts: 22
|
Posted: Fri Apr 11, 2008 11:25 am Post subject: |
|
|
Thanks, but it isn't what i'm trying to do. I want my .elf file to load the .irx file from my computer to my PS2 using X-Link. _________________ :D |
|
| Back to top |
|
 |
Lukasz

Joined: 19 Jan 2004 Posts: 248 Location: Denmark
|
Posted: Fri Apr 11, 2008 4:20 pm Post subject: |
|
|
Use "host:PADMAN.IRX" and remeber that PADMAN requires SIO2MAN to be loaded first. _________________ Lukasz.dk |
|
| Back to top |
|
 |
ghostboy78
Joined: 24 Jul 2006 Posts: 22
|
Posted: Sat Apr 12, 2008 10:04 am Post subject: |
|
|
| Lukasz wrote: | | Use "host:PADMAN.IRX" and remeber that PADMAN requires SIO2MAN to be loaded first. |
this doesn't work neither. My two .IRX files are in my C:\ directory also if this helps solve my problem. _________________ :D |
|
| Back to top |
|
 |
Lukasz

Joined: 19 Jan 2004 Posts: 248 Location: Denmark
|
Posted: Sat Apr 12, 2008 4:32 pm Post subject: |
|
|
If you are using PS2Link, the easist thing to do is to put the IRXs in the same directory as the ELF you are launching and use the relative path "host:<filename>".
Otherwise "host:c:\\padman.irx" or "host:c:/padman.irx" should work. _________________ Lukasz.dk |
|
| Back to top |
|
 |
ghostboy78
Joined: 24 Jul 2006 Posts: 22
|
Posted: Sun Apr 13, 2008 2:23 am Post subject: |
|
|
| Lukasz wrote: | If you are using PS2Link, the easist thing to do is to put the IRXs in the same directory as the ELF you are launching and use the relative path "host:<filename>".
Otherwise "host:c:\\padman.irx" or "host:c:/padman.irx" should work. |
Neither of what you said worked :/ I dunno whats going on so heres some source.
| Code: | sceSifInitRpc(0);
while (sceSifLoadModule("host:sio2man.irx",
0, NULL) < 0){
printf("Can't load module sio2man\n");
}
while (sceSifLoadModule("host:padman.irx",
0, NULL) < 0){
printf("Can't load module padman\n");
} |
_________________ :D |
|
| Back to top |
|
 |
ffgriever
Joined: 27 Oct 2007 Posts: 13
|
Posted: Wed Apr 16, 2008 10:54 pm Post subject: |
|
|
| It seems you're using SCE's sdk, not ps2sdk. I'm afraid you won't get much help here. |
|
| Back to top |
|
 |
|