Search found 12 matches

by vegito-93
Sat Apr 08, 2006 12:22 pm
Forum: PS2 Development
Topic: SifLoadElf problem
Replies: 3
Views: 3048

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...
by vegito-93
Sat Apr 08, 2006 8:39 am
Forum: PS2 Development
Topic: SifLoadElf problem
Replies: 3
Views: 3048

I really need to get this right. Anyone know what i am doing wrong.
by vegito-93
Mon Apr 03, 2006 10:30 am
Forum: PS2 Development
Topic: SifLoadElf problem
Replies: 3
Views: 3048

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&...
by vegito-93
Mon Apr 03, 2006 5:25 am
Forum: PS2 Development
Topic: Using fakeboot?
Replies: 5
Views: 3668

i heard that fakeboot is used to trick the ee into thinking that the iop is already reset.
by vegito-93
Sun Apr 02, 2006 3:25 am
Forum: PS2 Development
Topic: Using fakeboot?
Replies: 5
Views: 3668

anyone?
by vegito-93
Thu Mar 30, 2006 9:04 am
Forum: PS2 Development
Topic: Using fakeboot?
Replies: 5
Views: 3668

Using fakeboot?

k i am trying to load the PS2BROWSER wihtout reseting the iop. I put this in my elf: int main&#40;&#41; &#123; extern u8 *fakeboot_irx; extern int size_fakeboot_irx; int ret; SifExecModuleBuffer&#40;&fakeboot_irx, size_fakeboot_irx, 0, NULL, &ret&#41;; if &#40;ret < 0...
by vegito-93
Wed Mar 29, 2006 12:46 pm
Forum: PS2 Development
Topic: pstwo
Replies: 1
Views: 1613

yeah i wanted a modchip too. But it really screws up your laser and might even burn it if u got a slim Pstwo
by vegito-93
Fri Mar 17, 2006 6:54 am
Forum: PS2 Development
Topic: Reading single character off a file?
Replies: 12
Views: 4805

sorry i am just new to c++ but i do learn quickly.
by vegito-93
Thu Mar 16, 2006 1:03 pm
Forum: PS2 Development
Topic: Reading single character off a file?
Replies: 12
Views: 4805

hey i just got another quick question.
lets say i got something like this:

Code: Select all

char data1&#91;256&#93;="hi";
char data2&#91;256&#93;="vegito";
  
i want to put them together in one string. how can i do that?
by vegito-93
Thu Mar 16, 2006 6:54 am
Forum: PS2 Development
Topic: Reading single character off a file?
Replies: 12
Views: 4805

great thanks
by vegito-93
Thu Mar 16, 2006 5:33 am
Forum: PS2 Development
Topic: Reading single character off a file?
Replies: 12
Views: 4805

so would it be something like this: unsigned char *data; fd = fioOpen&#40;"mc0&#58;/SYS-CONF/hello.cnf", O_RDONLY&#41;; seek = fioLseek&#40;fd, 0, SEEK_END&#41;; //but the zero here. what should i replace it with? fioLseek&#40;fd, 0, SEEK_SET&#41;;// same questi...
by vegito-93
Wed Mar 15, 2006 9:11 am
Forum: PS2 Development
Topic: Reading single character off a file?
Replies: 12
Views: 4805

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...