(RAM other)
| 107 | |
| 108 | abstract public void configureActiveMemory(); |
| 109 | public void copyFrom(RAM other) { |
| 110 | cards = other.cards; |
| 111 | activeSlot = other.activeSlot; |
| 112 | listeners.addAll(other.listeners); |
| 113 | refreshListenerMap(); |
| 114 | configureActiveMemory(); |
| 115 | } |
| 116 | |
| 117 | public void write(int address, byte b, boolean generateEvent, boolean requireSynchronization) { |
| 118 | byte[] page = activeWrite.getMemoryPage(address); |
no test coverage detected