more renaming slipway=>fpga
authoradam <adam@megacz.com>
Mon, 20 Aug 2007 07:32:20 +0000 (08:32 +0100)
committeradam <adam@megacz.com>
Mon, 20 Aug 2007 07:32:20 +0000 (08:32 +0100)
src/edu/berkeley/fleet/fpga/Fpga.java

index 78bf2cc..928ca64 100644 (file)
@@ -426,13 +426,13 @@ public class Fpga extends Fleet {
     public int computeOffset(int origin, int target) { return (target - origin)/6; }
     public int computeTarget(int origin, int offset) { return origin + (offset*6); }
 
-    private SlipwayInstructionEncoder iie = new SlipwayInstructionEncoder();
+    private FpgaInstructionEncoder iie = new FpgaInstructionEncoder();
     public Instruction readInstruction(DataInputStream is) throws IOException { return iie.readInstruction(is); }
     public Instruction readInstruction(long instr) { return iie.readInstruction(instr); }
     public long writeInstruction(Instruction d) { return writeInstruction(d); }
     public void writeInstruction(DataOutputStream os, Instruction d) throws IOException { iie.writeInstruction(os, d); }
 
-    private class SlipwayInstructionEncoder extends InstructionEncoder {
+    private class FpgaInstructionEncoder extends InstructionEncoder {
         public long getDestAddr(Destination box) { return ((FpgaBenkoBox.VirtualPort)box).addr; }
         public long getBoxInstAddr(BenkoBox box) { return ((FpgaBenkoBox)box).instr_addr; }
         public Destination getDestByAddr(long dest) {