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:
parent
6c54699c44
commit
5a8b8478d2
@ -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!
|
||||
|
Loading…
x
Reference in New Issue
Block a user