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

Method getMemory

src/main/java/jace/core/Computer.java:65–71  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

63 abstract protected RAM createMemory();
64
65 final public RAM getMemory() {
66 if (memory == null) {
67 memory = createMemory();
68 memory.configureActiveMemory();
69 }
70 return memory;
71 }
72
73 final public Motherboard getMotherboard() {
74 return motherboard;

Callers 2

executeMethod · 0.95
notifyVBLStateChangedMethod · 0.95

Calls 2

createMemoryMethod · 0.95
configureActiveMemoryMethod · 0.45

Tested by

no test coverage detected