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=96dd446ab936b4db82d0bd94f90e20442a4d86af;hp=abfed4653c4d669146415a6ab983aa3e4f463908;hpb=a60db0eb036058aa47c928653da0b504452aa595;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); - } }