Memory commands: Memory addresses are up to 16 hex digits, not up to 8
This commit is contained in:
parent
5b6314c196
commit
db729bf516
1 changed files with 1 additions and 1 deletions
|
@ -987,7 +987,7 @@ namespace
|
|||
has_value = (secondword != "");
|
||||
try {
|
||||
if(t = regex("0x(.+)", firstword)) {
|
||||
if(t[1].length() > 8)
|
||||
if(t[1].length() > 16)
|
||||
throw 42;
|
||||
address = 0;
|
||||
for(unsigned i = 0; i < t[1].length(); i++)
|
||||
|
|
Loading…
Add table
Reference in a new issue