X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=plugins%2Fnet.mograsim.machine%2Fsrc%2Fnet%2Fmograsim%2Fmachine%2Fmi%2FMicroInstructionMemory.java;h=6409f78d061470901b05a1c222d975a715f08936;hb=dfc725abca213bdd76fc97fdeb3310f095131f95;hp=abfed4653c4d669146415a6ab983aa3e4f463908;hpb=76c2b3eab6cec47490bb75713356152deb5d07ed;p=Mograsim.git diff --git a/plugins/net.mograsim.machine/src/net/mograsim/machine/mi/MicroInstructionMemory.java b/plugins/net.mograsim.machine/src/net/mograsim/machine/mi/MicroInstructionMemory.java index abfed465..6409f78d 100644 --- a/plugins/net.mograsim.machine/src/net/mograsim/machine/mi/MicroInstructionMemory.java +++ b/plugins/net.mograsim.machine/src/net/mograsim/machine/mi/MicroInstructionMemory.java @@ -6,15 +6,4 @@ public interface MicroInstructionMemory extends Memory { @Override public MicroInstructionMemoryDefinition getDefinition(); - - public void registerActiveMicroInstructionChangedListener(ActiveMicroInstructionChangedListener ob); - - public void deregisterActiveMicroInstructionChangedListener(ActiveMicroInstructionChangedListener ob); - - public void setActiveInstruction(long address); - - public static interface ActiveMicroInstructionChangedListener - { - public void activeMicroInstructionChanged(long address); - } }