(int address)
| 137 | } |
| 138 | |
| 139 | public byte readRaw(int address) { |
| 140 | // if (address >= 65536) return 0; |
| 141 | return activeRead.getMemoryPage(address)[address & 0x0FF]; |
| 142 | } |
| 143 | |
| 144 | public byte read(int address, RAMEvent.TYPE eventType, boolean triggerEvent, boolean requireSyncronization) { |
| 145 | // if (address >= 65536) return 0; |
no test coverage detected