Media Engine: Difference between revisions

From PSP Developer wiki
Jump to navigation Jump to search
(Created page with "<b>The Media Engine</b> (<i>or shortly ME</i>) — is a second MIPS based CPU core, that was not directly accessible by licensed developers. Instead, Sony runs code on the ME to facilitate decoding audio and video assets, along with the help of more specialized hardware like the Virtual Mobile Engine and "AVC". The ME runs at the same clock frequency as the main CPU core. It seems to have the same instruction set. The ME has two co-processors: * <b>COP0</b>: general sy...")
(No difference)

Revision as of 05:11, 21 January 2024

The Media Engine (or shortly ME) — is a second MIPS based CPU core, that was not directly accessible by licensed developers. Instead, Sony runs code on the ME to facilitate decoding audio and video assets, along with the help of more specialized hardware like the Virtual Mobile Engine and "AVC".

The ME runs at the same clock frequency as the main CPU core. It seems to have the same instruction set.

The ME has two co-processors:

  • COP0: general system control
  • COP1: 32-bit Floating Point Unit

It has three instructions the main CPU doesn't have (or used):

  • DBREAK (also present on other MIPS processors): used only once in the ME firmware
  • MTVME
  • MFVME

These two last instructions actually have the same opcodes as LDL and SDL, which this CPU doesn't have. The instructions are actually encoded like this:

 ldl $reg, off($a3) <=> mfvme $reg, $off
 sdl $reg, off($a3) <=> mtvme $reg, $off

They might be used to store and retrieve information from and to the VME. They seem to be only used for video decoding.