X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Fmips%2FCompiler.java;h=f47d1601f32b3d3fb31e444a65d8722b3b504bf5;hb=4923e8529bbd51d0d03387d2f08ae08b38d5ef4a;hp=bcfc66216cdffa7e765ada74696417b633bd1dae;hpb=14c79b82aa525bab500334fac875b4d2b2685926;p=org.ibex.core.git diff --git a/src/org/xwt/mips/Compiler.java b/src/org/xwt/mips/Compiler.java index bcfc662..f47d160 100644 --- a/src/org/xwt/mips/Compiler.java +++ b/src/org/xwt/mips/Compiler.java @@ -1,5 +1,5 @@ // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] -package org.xwt.imp; +package org.xwt.mips; import java.util.*; import java.io.*; @@ -19,7 +19,7 @@ import java.io.*; // FEATURE: emit bytecode rather than .java code (for on-the-fly classloading without javac present in "real" JVMs) /** reads a fully linked MIPS ELF binary image on stdin; writes a .java file on stdout */ -public class MIPS { +public class Compiler { static String runs = ""; static int last_emit = -1; @@ -27,7 +27,7 @@ public class MIPS { public static void main(String[] s) throws IOException { if (s.length != 2) { - System.err.println("usage: java " + MIPS.class.getName() + " "); + System.err.println("usage: java " + Compiler.class.getName() + " "); System.exit(-1); }