org.xwt.mips -> org.ibex.nestedvm
[nestedvm.git] / src / org / ibex / nestedvm / JavaSourceCompiler.java
similarity index 99%
rename from src/org/xwt/mips/JavaSourceCompiler.java
rename to src/org/ibex/nestedvm/JavaSourceCompiler.java
index 85295e6..d71bee8 100644 (file)
@@ -1,8 +1,8 @@
-package org.xwt.mips;
+package org.ibex.nestedvm;
 
 import java.util.*;
 import java.io.*;
-import org.xwt.mips.util.SeekableData;
+import org.ibex.nestedvm.util.*;
 
 public class JavaSourceCompiler extends Compiler {
     /** Stores the "case r XXX: ... run_YYYY();" blocks generated by the emitText method/ */
@@ -27,7 +27,7 @@ public class JavaSourceCompiler extends Compiler {
     private static String indents[] = new String[16];
     static { String s=""; for(int i=0;i<indents.length;i++,s=s+"    ") indents[i] = s; }
     
-    public JavaSourceCompiler(SeekableData binary, String className, Writer w)  throws IOException {
+    public JavaSourceCompiler(Seekable binary, String className, Writer w)  throws IOException {
         super(binary,className);
         out = new PrintWriter(w);
     }