MCPcopy Create free account
hub / github.com/badvision/jace / copyFrom

Method copyFrom

src/main/java/jace/core/RAM.java:109–115  ·  view source on GitHub ↗
(RAM other)

Source from the content-addressed store, hash-verified

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);

Callers 1

setMemoryMethod · 0.45

Calls 2

refreshListenerMapMethod · 0.95
configureActiveMemoryMethod · 0.95

Tested by

no test coverage detected