mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
git-svn-id: http://svn.purei.org/purei/trunk@148 b36208d7-6611-0410-8bec-b1987f11c4a2
This commit is contained in:
parent
c47accb9f0
commit
1205201c88
13 changed files with 128 additions and 25 deletions
|
@ -297,6 +297,12 @@ void CMIPSAssembler::SLLV(unsigned int nRD, unsigned int nRT, unsigned int nRS)
|
|||
m_pPtr++;
|
||||
}
|
||||
|
||||
void CMIPSAssembler::SLTIU(unsigned int nRT, unsigned int nRS, uint16 nImmediate)
|
||||
{
|
||||
(*m_pPtr) = ((0x0B) << 26) | (nRS << 21) | (nRT << 16) | nImmediate;
|
||||
m_pPtr++;
|
||||
}
|
||||
|
||||
void CMIPSAssembler::SLTU(unsigned int nRD, unsigned int nRS, unsigned int nRT)
|
||||
{
|
||||
(*m_pPtr) = (nRS << 21) | (nRT << 16) | (nRD << 11) | 0x2B;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue