1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Ensures M and X are exposed to the public interface.

This commit is contained in:
Thomas Harte
2020-10-10 21:33:56 -04:00
parent 28c8ba70c1
commit ae87728770
3 changed files with 4 additions and 4 deletions
@@ -1064,7 +1064,7 @@ void ProcessorStorage::set_m_x_flags(bool m, bool x) {
x_shift_ = x ? 0 : 8;
}
uint8_t ProcessorStorage::get_flags() {
uint8_t ProcessorStorage::get_flags() const {
uint8_t result = flags_.get();
if(!emulation_flag_) {