Fix RDMIXED

This commit is contained in:
Will Scullin 2019-09-21 20:49:09 -07:00
parent 38db968411
commit 6348d52cfe
No known key found for this signature in database
GPG Key ID: 9092A5C0A673416B

View File

@ -175,8 +175,8 @@ export default function Apple2IO(cpu, callbacks)
result = callbacks.isText() ? 0x80 : 0x0;
break;
case LOC.RDMIXED:
if (callbacks.isText)
result = callbacks.isText() ? 0x80 : 0x0;
if (callbacks.isMixed)
result = callbacks.isMixed() ? 0x80 : 0x0;
break;
case LOC.RDPAGE2:
if (callbacks.isPage2)