mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
ROM dissasm "refresh" + RE + small fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4938 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -129,6 +129,16 @@ void iar(const UDSPInstruction& opc)
|
||||
g_dsp.r[opc.hex & 0x3] = dsp_increment_addr_reg(opc.hex & 0x3);
|
||||
}
|
||||
|
||||
// XAR $arD ?
|
||||
// 0000 0000 0000 11dd
|
||||
// $arD result somehow depends on $wrD
|
||||
// unknown atm
|
||||
// used in IPL ucode
|
||||
void xar(const UDSPInstruction& opc)
|
||||
{
|
||||
// u8 dreg = opc.hex & 0x3;
|
||||
}
|
||||
|
||||
// SBCLR #I
|
||||
// 0001 0011 0000 0iii
|
||||
// bit of status register $sr. Bit number is calculated by adding 6 to
|
||||
|
Reference in New Issue
Block a user