DSP: Fix typos in DSP LoadStore doc
This commit is contained in:
parent
682a6117b5
commit
4ed06da2b4
|
@ -14,7 +14,7 @@ namespace Interpreter
|
||||||
{
|
{
|
||||||
// SRS @M, $(0x18+S)
|
// SRS @M, $(0x18+S)
|
||||||
// 0010 1sss mmmm mmmm
|
// 0010 1sss mmmm mmmm
|
||||||
// Move value from register $(0x18+D) to data memory pointed by address
|
// Move value from register $(0x18+S) to data memory pointed by address
|
||||||
// CR[0-7] | M. That is, the upper 8 bits of the address are the
|
// CR[0-7] | M. That is, the upper 8 bits of the address are the
|
||||||
// bottom 8 bits from CR, and the lower 8 bits are from the 8-bit immediate.
|
// bottom 8 bits from CR, and the lower 8 bits are from the 8-bit immediate.
|
||||||
// Note: pc+=2 in duddie's doc seems wrong
|
// Note: pc+=2 in duddie's doc seems wrong
|
||||||
|
@ -97,7 +97,7 @@ void lrr(const UDSPInstruction opc)
|
||||||
|
|
||||||
// LRRD $D, @$S
|
// LRRD $D, @$S
|
||||||
// 0001 1000 1ssd dddd
|
// 0001 1000 1ssd dddd
|
||||||
// Move value from data memory pointed by addressing register $S toregister $D.
|
// Move value from data memory pointed by addressing register $S to register $D.
|
||||||
// Decrement register $S.
|
// Decrement register $S.
|
||||||
void lrrd(const UDSPInstruction opc)
|
void lrrd(const UDSPInstruction opc)
|
||||||
{
|
{
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace DSP::JIT::x64
|
||||||
{
|
{
|
||||||
// SRS @M, $(0x18+S)
|
// SRS @M, $(0x18+S)
|
||||||
// 0010 1sss mmmm mmmm
|
// 0010 1sss mmmm mmmm
|
||||||
// Move value from register $(0x18+D) to data memory pointed by address
|
// Move value from register $(0x18+S) to data memory pointed by address
|
||||||
// CR[0-7] | M. That is, the upper 8 bits of the address are the
|
// CR[0-7] | M. That is, the upper 8 bits of the address are the
|
||||||
// bottom 8 bits from CR, and the lower 8 bits are from the 8-bit immediate.
|
// bottom 8 bits from CR, and the lower 8 bits are from the 8-bit immediate.
|
||||||
// Note: pc+=2 in duddie's doc seems wrong
|
// Note: pc+=2 in duddie's doc seems wrong
|
||||||
|
@ -128,7 +128,7 @@ void DSPEmitter::lrr(const UDSPInstruction opc)
|
||||||
|
|
||||||
// LRRD $D, @$S
|
// LRRD $D, @$S
|
||||||
// 0001 1000 1ssd dddd
|
// 0001 1000 1ssd dddd
|
||||||
// Move value from data memory pointed by addressing register $S toregister $D.
|
// Move value from data memory pointed by addressing register $S to register $D.
|
||||||
// Decrement register $S.
|
// Decrement register $S.
|
||||||
void DSPEmitter::lrrd(const UDSPInstruction opc)
|
void DSPEmitter::lrrd(const UDSPInstruction opc)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue