Search found 12 matches
- Sat Apr 08, 2006 12:22 pm
- Forum: PS2 Development
- Topic: SifLoadElf problem
- Replies: 3
- Views: 3207
i had some error checks before but for some reason i removed them. I will put them on again. *EDIT* Well i just put all the checks back and for some reason it worked. Now if u don't mind i got a random. Might be crazy. When an elf is runing, are all the comands, calls and everything else runing from...
- Sat Apr 08, 2006 8:39 am
- Forum: PS2 Development
- Topic: SifLoadElf problem
- Replies: 3
- Views: 3207
- Mon Apr 03, 2006 10:30 am
- Forum: PS2 Development
- Topic: SifLoadElf problem
- Replies: 3
- Views: 3207
SifLoadElf problem
k i tried a simple: t_ExecData elfdata; .............................//all the other code SifLoadElf(path,&elfdata); and it returned -1. Whats wrong *EDIT* ok i got around that but ran into another problem. The complete code: int userThreadID = 0; static char userThreadStack&...
- Mon Apr 03, 2006 5:25 am
- Forum: PS2 Development
- Topic: Using fakeboot?
- Replies: 5
- Views: 3902
- Sun Apr 02, 2006 3:25 am
- Forum: PS2 Development
- Topic: Using fakeboot?
- Replies: 5
- Views: 3902
- Thu Mar 30, 2006 9:04 am
- Forum: PS2 Development
- Topic: Using fakeboot?
- Replies: 5
- Views: 3902
Using fakeboot?
k i am trying to load the PS2BROWSER wihtout reseting the iop. I put this in my elf: int main() { extern u8 *fakeboot_irx; extern int size_fakeboot_irx; int ret; SifExecModuleBuffer(&fakeboot_irx, size_fakeboot_irx, 0, NULL, &ret); if (ret < 0...
- Wed Mar 29, 2006 12:46 pm
- Forum: PS2 Development
- Topic: pstwo
- Replies: 1
- Views: 1727
- Fri Mar 17, 2006 6:54 am
- Forum: PS2 Development
- Topic: Reading single character off a file?
- Replies: 12
- Views: 5316
- Thu Mar 16, 2006 1:03 pm
- Forum: PS2 Development
- Topic: Reading single character off a file?
- Replies: 12
- Views: 5316
hey i just got another quick question.
lets say i got something like this:
i want to put them together in one string. how can i do that?
lets say i got something like this:
Code: Select all
char data1[256]="hi";
char data2[256]="vegito";
- Thu Mar 16, 2006 6:54 am
- Forum: PS2 Development
- Topic: Reading single character off a file?
- Replies: 12
- Views: 5316
- Thu Mar 16, 2006 5:33 am
- Forum: PS2 Development
- Topic: Reading single character off a file?
- Replies: 12
- Views: 5316
- Wed Mar 15, 2006 9:11 am
- Forum: PS2 Development
- Topic: Reading single character off a file?
- Replies: 12
- Views: 5316
Reading single character off a file?
Hi guys. I am trying to put some code in my app so i can do this: hello my name is vegito lets say i got that inside a .cnf file on my mc. I open it up with fioOpen and now i want to read from it. I don't want to read the whole sentence but only a single character from it. So lets say i want to read...