mirror of
https://github.com/TomHarte/CLK.git
synced 2025-07-14 16:24:00 +00:00
Limit character range.
This commit is contained in:
@ -179,7 +179,7 @@ class ConcreteMachine:
|
|||||||
uint8_t next;
|
uint8_t next;
|
||||||
executor_.bus.read(address, next, false);
|
executor_.bus.read(address, next, false);
|
||||||
if(next < 0x20) break;
|
if(next < 0x20) break;
|
||||||
desc.push_back(static_cast<char>(next));
|
desc.push_back(static_cast<char>(next) & 0x7f);
|
||||||
++address;
|
++address;
|
||||||
}
|
}
|
||||||
return desc;
|
return desc;
|
||||||
|
Reference in New Issue
Block a user