mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
correctly report page2 status
This commit is contained in:
parent
017e152476
commit
b9bd03b958
@ -585,7 +585,7 @@ export default class MMU implements Memory, Restorable<MMUState> {
|
||||
result = this.vm.isMixed() ? 0x80 : 0x0;
|
||||
break;
|
||||
case LOC.RDPAGE2:
|
||||
result = this.vm.isPage2() ? 0x80 : 0x0;
|
||||
result = this._page2 ? 0x80 : 0x0;
|
||||
break;
|
||||
case LOC.RDHIRES:
|
||||
result = this.vm.isHires() ? 0x80 : 0x0;
|
||||
|
Loading…
Reference in New Issue
Block a user