1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00

Limit character range.

This commit is contained in:
Thomas Harte 2024-05-23 22:31:43 -04:00
parent 778ac6e6d1
commit 78ec9e5a60

View File

@ -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;