1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-27 06:35:04 +00:00

Corrects unhandled IO assert.

The IIgs proper is actually waiting on communication with the RTC.
This commit is contained in:
Thomas Harte 2020-10-28 22:14:02 -04:00
parent 6c54699c44
commit 5a8b8478d2

View File

@ -169,9 +169,9 @@ class ConcreteMachine:
break;
default:
if(address < 0xc100) {
if((address & 0xffff) < 0xc100) {
// TODO: all other IO accesses.
printf("Unhandled IO: %04x\n", address);
printf("Unhandled IO: %04x\n", address & 0xffff);
assert(false);
} else {
// Card IO. Not implemented!