| View previous topic :: View next topic |
| Author |
Message |
realv
Joined: 03 Jun 2004 Posts: 3
|
Posted: Fri Jun 04, 2004 12:03 am Post subject: ps2 docs |
|
|
Hi all. I will start programming the ps2 in assembler. Can someone tell me where i can find some good docs about ps2. What i searching for : technical info , memory map , info about the main processor etc. Please help , any docs that i found in internet are not wery exciting.
PS: Sory for my anglish :) |
|
| Back to top |
|
 |
pixel
Joined: 30 Jan 2004 Posts: 791
|
Posted: Fri Jun 04, 2004 12:26 am Post subject: |
|
|
The best technical documents you could find legally are in the linux kit. That is, you have to buy the kit from Sony, and they give you the docs you want. But you won't be able to share these docs. _________________ pixel: A mischievous magical spirit associated with screen displays. The computer industry has frequently borrowed from mythology. Witness the sprites in computer graphics, the demons in artificial intelligence and the trolls in the marketing department. |
|
| Back to top |
|
 |
realv
Joined: 03 Jun 2004 Posts: 3
|
Posted: Fri Jun 04, 2004 12:27 am Post subject: |
|
|
Hmm on ps2dev i found ps2sdk documentation but hacking this all libs i think this is not the way. Many people can think that i'm a big idiot , programming so powerfull machine (read PS2) in assembler , but so i can learn more about ps2. Then i can start with programming the ps2 in C/C++.
PS: Sorry for my anglish |
|
| Back to top |
|
 |
realv
Joined: 03 Jun 2004 Posts: 3
|
Posted: Fri Jun 04, 2004 12:33 am Post subject: |
|
|
| pixel thx. |
|
| Back to top |
|
 |
Drakonite Site Admin

Joined: 17 Jan 2004 Posts: 989
|
Posted: Fri Jun 04, 2004 4:04 am Post subject: |
|
|
It can take some rumaging around, but there are some sites with decent amounts of info out there. I believe it was Ars Technica that did a good overview of the PS2's hardware, that IMO is a must read for anyone doing ps2dev, or anyone who likes to argue about hardware for that matter ;)
There are other places.. For example, getting the official Mips references would be very helpful for assembly (available for free... I just don't remember where) _________________ Shoot Pixels Not People!
Makeshift Development |
|
| Back to top |
|
 |
Saotome

Joined: 03 Apr 2004 Posts: 182
|
|
| Back to top |
|
 |
mharris
Joined: 25 Jan 2004 Posts: 155 Location: Annapolis, MD, USA
|
Posted: Fri Jun 04, 2004 10:07 pm Post subject: |
|
|
If you're just interested in asm programming for the MIPS core (no VU stuff, etc.) you can get the docs directly from MIPS: http://www.mips.com/content/Documentation/MIPSDocumentation/ProcessorArchitecture/doclibrary
Of course one of the more instructive ways to learn is to look at the asm code your C code generates: | Code: | | ps2-ee-gcc -S -O0 hello.c |
You can also look at the binutils source, but it's a tough read... |
|
| Back to top |
|
 |
|