Memory commands: Memory addresses are up to 16 hex digits, not up to 8

This commit is contained in:
Ilari Liusvaara 2012-10-24 22:07:14 +03:00
parent 5b6314c196
commit db729bf516

View file

@ -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++)