X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.machine%2Fsrc%2Fnet%2Fmograsim%2Fmachine%2Fstandard%2Fmemory%2FModelWordAddressableMemory.java;fp=net.mograsim.machine%2Fsrc%2Fnet%2Fmograsim%2Fmachine%2Fstandard%2Fmemory%2FModelWordAddressableMemory.java;h=edb566685d23505e45d06ff306cd464dc958d26b;hb=88e1b4382640ee4e907e06572fe6794bc925f344;hp=7e5296d439add3a3d194085baa8745552e81eb40;hpb=0e506ec1b95fb65d5cb85412b59e528f9a996038;p=Mograsim.git diff --git a/net.mograsim.machine/src/net/mograsim/machine/standard/memory/ModelWordAddressableMemory.java b/net.mograsim.machine/src/net/mograsim/machine/standard/memory/ModelWordAddressableMemory.java index 7e5296d4..edb56668 100644 --- a/net.mograsim.machine/src/net/mograsim/machine/standard/memory/ModelWordAddressableMemory.java +++ b/net.mograsim.machine/src/net/mograsim/machine/standard/memory/ModelWordAddressableMemory.java @@ -8,7 +8,7 @@ import net.mograsim.machine.ModelMemory; public abstract class ModelWordAddressableMemory extends ModelMemory { - private final Pin addrPin, dataPin, rWPin, clock; + private final Pin addrPin, dataPin, rWPin; private CoreWordAddressableMemory memory; private MainMemoryDefinition definition; @@ -20,7 +20,6 @@ public abstract class ModelWordAddressableMemory extends ModelMemory addPin(addrPin = new Pin(model, this, "A", definition.getMemoryAddressBits(), PinUsage.INPUT, width, 20)); addPin(dataPin = new Pin(model, this, "D", definition.getCellWidth(), PinUsage.TRISTATE, width, 50)); addPin(rWPin = new Pin(model, this, "RW", 1, PinUsage.INPUT, width, 80)); - addPin(clock = new Pin(model, this, "C", 1, PinUsage.INPUT, width, 110)); init(); } @@ -45,11 +44,6 @@ public abstract class ModelWordAddressableMemory extends ModelMemory return rWPin; } - public Pin getClockPin() - { - return clock; - } - public void setCoreModelBinding(CoreWordAddressableMemory memory) { this.memory = memory;