diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2022-05-22 17:16:22 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-05-29 15:00:09 -0700 |
| commit | baf2c710ffbee24413315afe70651c170b645bf7 (patch) | |
| tree | 28e0ca6112f10437d4848e438b086c706df0369c /Source/Core | |
| parent | 4dc7208195f679a54066b2ad1adfaa3398aea494 (diff) | |
DSP: Fix typo with TST
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/DSP/Interpreter/DSPIntArithmetic.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/DSP/Jit/x64/DSPJitArithmetic.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/DSP/Interpreter/DSPIntArithmetic.cpp b/Source/Core/Core/DSP/Interpreter/DSPIntArithmetic.cpp index 90199d74d9..5ada6bb669 100644 --- a/Source/Core/Core/DSP/Interpreter/DSPIntArithmetic.cpp +++ b/Source/Core/Core/DSP/Interpreter/DSPIntArithmetic.cpp @@ -81,7 +81,7 @@ void Interpreter::andf(const UDSPInstruction opc) // TST // 1011 r001 xxxx xxxx -// Test accumulator %acR. +// Test accumulator $acR. // // flags out: --xx xx00 void Interpreter::tst(const UDSPInstruction opc) diff --git a/Source/Core/Core/DSP/Jit/x64/DSPJitArithmetic.cpp b/Source/Core/Core/DSP/Jit/x64/DSPJitArithmetic.cpp index 37e8a4385e..a0185f73a2 100644 --- a/Source/Core/Core/DSP/Jit/x64/DSPJitArithmetic.cpp +++ b/Source/Core/Core/DSP/Jit/x64/DSPJitArithmetic.cpp @@ -126,7 +126,7 @@ void DSPEmitter::andf(const UDSPInstruction opc) // TST // 1011 r001 xxxx xxxx -// Test accumulator %acR. +// Test accumulator $acR. // // flags out: --xx xx00 void DSPEmitter::tst(const UDSPInstruction opc) |
