(int address, byte value)
| 123 | } |
| 124 | |
| 125 | public void writeByte(int address, byte value) { |
| 126 | byte[] page = getMemoryPage(address); |
| 127 | StateManager.markDirtyValue(page); |
| 128 | getMemoryPage(address)[address & 0x0ff] = value; |
| 129 | } |
| 130 | |
| 131 | public void fillBanks(PagedMemory source) { |
| 132 | byte[][] sourceMemory = source.getMemory(); |
no test coverage detected