(int address)
| 285 | private final Map<Integer, MemoryCell> memoryCells = new ConcurrentHashMap<>(); |
| 286 | |
| 287 | public MemoryCell getMemoryCell(int address) { |
| 288 | return memoryCells.get(address); |
| 289 | } |
| 290 | |
| 291 | public void initMemoryView() { |
| 292 | Emulator.withMemory(memory -> { |
no test coverage detected