-ctrl+g for goto in mem viewer/disassembly

-removed skipping of zz_/z_ in disassembly
-fixes to the expression parser
This commit is contained in:
Kingcom
2013-06-29 22:25:17 +02:00
parent 9ec27e4f92
commit 6df25d52f0
6 changed files with 33 additions and 15 deletions
+1 -1
View File
@@ -222,7 +222,7 @@ bool parseExpression(char* infix, DebugInterface* cpu, u32& dest)
while (infixPos < infixLen)
{
char first = tolower(infix[infixPos]);
char subStr[12];
char subStr[256];
int subPos = 0;
if (first == ' ' || first == '\t')