better colorization of interpreter logs
[fleet.git] / src / edu / berkeley / fleet / interpreter / Interpreter.java
index e58eb3d..c43ad40 100644 (file)
@@ -60,6 +60,7 @@ public class Interpreter extends FleetTwoFleet {
                 "Lut3",
                 "CarrySaveAdder",
                 "Rotator",
+                "Timer",
             }, logging);
     }
 
@@ -171,8 +172,9 @@ public class Interpreter extends FleetTwoFleet {
 
     public class InterpreterProcess extends FleetProcess implements Runnable {
         private Instruction[] instructions;
-        public synchronized void sendWord(Destination d, BitVector word) {
-            InterpreterPath path = (InterpreterPath)debugShip.getDock("in").getPath(d, new BitVector(1));
+        public synchronized void sendWord(Destination d, BitVector word) { sendWord(d, word, null); }
+        public synchronized void sendWord(Destination d, BitVector word, BitVector signal) {
+            InterpreterPath path = (InterpreterPath)debugShip.getDock("in").getPath(d, signal==null?new BitVector(1):signal);
             ((InterpreterDestination)d).
                 addDataFromFabric(new Packet(path, word, false));
         }
@@ -188,7 +190,6 @@ public class Interpreter extends FleetTwoFleet {
         }
         public Fleet getFleet() { return Interpreter.this; }
         public synchronized void sendInstruction(Instruction i) {
-            Log.dispatch(i);
             long il = writeInstruction(i, debugShip.getDock("in"));
             Path path = debugShip.getDock("in").getPath(i.dock.getInstructionDestination(), null);
             new Packet((InterpreterPath)path, new BitVector(getWordWidth()).set(il), false).send();