summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/assemble.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-04-12 13:43:12 +0000
committerhrydgard <hrydgard@gmail.com>2009-04-12 13:43:12 +0000
commitd4055b971b9a6a04c8a07fa8cbbdb49c1e2a6c6f (patch)
treea62c879bfaa7af88a236bfd72d9a96f542327249 /Source/Core/DSPCore/Src/assemble.cpp
parentf6474b98a85877aae2b7c0c8485e280bbf68053a (diff)
DSP asm/disasm: improve the shift instructions so they at least round-trip. not 100% sure it's correct though.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2957 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/assemble.cpp')
-rw-r--r--Source/Core/DSPCore/Src/assemble.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DSPCore/Src/assemble.cpp b/Source/Core/DSPCore/Src/assemble.cpp
index 4c35b43b6b..cac1638b41 100644
--- a/Source/Core/DSPCore/Src/assemble.cpp
+++ b/Source/Core/DSPCore/Src/assemble.cpp
@@ -213,12 +213,12 @@ s32 strtoval(const char *str)
if (ptr[0] == '#')
{
ptr++;
- negative = true; // Wow! Double # (needed one to get in here) ]negates???
+ negative = true; // Wow! Double # (needed one to get in here) negates???
}
if (ptr[0] == '-')
{
ptr++;
- negative = true; // Wow! # negates???
+ negative = true;
}
if (ptr[0] == '0')
{