Blessedcurse
Still Fresh
- Joined
- Oct 10, 2008
- Messages
- 5
would it be possible to get a psp emulator ported to this device? and what would it take?
zoppe said:i don't know much(if i know anything) about coding and emulators other than personal experience of using them. so i may be entirely incorrect, you all are free to correct me.
i wonder. if the devs use the graphics chip to do all of the rendering(if it is powerful enough) and clock the p&|a to 900mhz can we have 50% speed? or am i completely incorrect?
thats nice, but you don't speak for everyone else.Mqark said:I don't want a PSP emulator (or a DS emulator for that matter).
I have a both PSP and a DS and these seem to be perfectly adequate for playing their respective games on. <_<
PoisonedV said:thats nice, but you don't speak for everyone else.Mqark said:I don't want a PSP emulator (or a DS emulator for that matter).
I have a both PSP and a DS and these seem to be perfectly adequate for playing their respective games on. <_<
Mqark said:PoisonedV said:thats nice, but you don't speak for everyone else.Mqark said:I don't want a PSP emulator (or a DS emulator for that matter).
I have a both PSP and a DS and these seem to be perfectly adequate for playing their respective games on. <_<
And neither, do you.
You're not God, and I'm not yet convinced that you're the authority on Emulation, Pandora or Gaming in general, past or present, so stop lording it over people.
We don't have to prove ourselves to you and no-one is asking for your recognition or respect. To me, you are just another faceless person on a forum. I suspect that I am the same or less to you, frankly I really don't care.
And where in your head does the sentence "I don't want a PSP emulator (or a DS emulator for that matter)" get mangled into "Nobody wants a PSP emulator (or a DS emulator for that matter)"?
Blessedcurse said:ok i also have a DS and PSP but i would like an emulator on the Pandora first to see if its possible, and second to keep everything onto just one device.
But aside from that, lets keep the fighting down please. Would it be possible ..actually more like plausible to extract the game (or homebrew) onto your harddrive. and then edit the game to run on the Pandora without the use of an emulator?
meaning that way the game is ...idk...rewritten into a style that the pandora can read as if it were its own, and have everything work? sorry if im not communicating clearly
and thats where you are wrongMqark said:PoisonedV said:thats nice, but you don't speak for everyone else.Mqark said:I don't want a PSP emulator (or a DS emulator for that matter).
I have a both PSP and a DS and these seem to be perfectly adequate for playing their respective games on. <_<
And neither, do you.
You're not God,
PoisonedV said:and thats where you are wrong
MonkeyChops said:Although all hope is not lost. Hlide said he may take a crack at it awhile back.
http://forums.ps2dev.org/viewtopic.php?t=10364
http://www.gp32x.de/board/index.php?showtopic=38155&st=3750&p=567540&#entry567540
I wonder if he's still considering it.
1: LUI r0, Cx "r0 = Cx<<16;"
2: ORI r0, Cy "r0 |= Cy;"
3: LUI r1, Cz "r1 = Cz<<16;"
4: ORI r1, Cw "r0 |= Cw;"
total : 4 cycles.
1: MOVW r0, Cy "r0 = Cy;"
1: MOVW r1, Cw "r1 = Cw;"
2: MOVT r0, Cx "r0[31..16] = Cx;"
2: MOVT r1, Cz "r1[31..16] = Cz;"
total : 2 cycles.
1 : SLL r0, r1, 2 "r0 = r1 << 2;"
2 : ADDU r0, r2, r0 "r0 = r2 + r0;"
3+n: LW r3, 0(r0) "r3 = *((int *)r0);"
total : 3+n cycles.
1 : ADD r0, r2, r1 LSL #2 "r0 = r2 + (r1<<2);"
1+n: LDR r3, [r2, +r1 LSL #2] "r3 = *((int *)(r2 + (r1<<2)));"
total : 1+n cycles.