Skip to content

Developer Information

Ivan edited this page Aug 22, 2016 · 10 revisions

If you are wondering about websites and documents in order to gather information about certain parts of the PlayStation 3 here is a nice list to start with. Probably more things should be added here, but for now it is a good compilation of useful sources. If what your are looking for isn't below, remember that Google is your friend. If it's not, remember that other RPCS3 developers are your friends too. Ask them!

IRC channel: on #rpcs3 at Freenode

Best wishes and happy coding!


Links

Cell

RSX

HLE

Information

####Misc (Some of this information can be deleted, or at least it should be properly organized).

  • sizeof(char) = 1 (= 8 bits)
  • sizeof(short) = 2
  • sizeof(int) = 4
  • sizeof(long) = 4
  • sizeof(long long) = 8
  • sizeof(size_t) = 4
  • sizeof(sys_memory_container_t) = 4
  • sizeof(void*) = 4

Reading from invalid addresses / Trying to execute code from invalid addresses (e.g. stack) / Trying to write to invalid addresses (e.g. functions) makes the application exit on real PS3s.

Clone this wiki locally