Media Engine
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 firmwareMTVME
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.