mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-17 10:06:21 +00:00
Limit character range.
This commit is contained in:
parent
778ac6e6d1
commit
78ec9e5a60
@ -179,7 +179,7 @@ class ConcreteMachine:
|
||||
uint8_t next;
|
||||
executor_.bus.read(address, next, false);
|
||||
if(next < 0x20) break;
|
||||
desc.push_back(static_cast<char>(next));
|
||||
desc.push_back(static_cast<char>(next) & 0x7f);
|
||||
++address;
|
||||
}
|
||||
return desc;
|
||||
|
Loading…
Reference in New Issue
Block a user