X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=blobdiff_plain;f=src%2Ftests%2FEnv.java;h=be64739d63b48648538a5026170a06cd5c1a47fb;hp=59048b527e0c8140ab29b6971ff3c80ee881b185;hb=ae52817e5cb153f781b76f5d525e127f217b5482;hpb=c2b2704764af1ade923ba8f15d517b87f9d16189 diff --git a/src/tests/Env.java b/src/tests/Env.java index 59048b5..be64739 100644 --- a/src/tests/Env.java +++ b/src/tests/Env.java @@ -1,7 +1,6 @@ package tests; -import org.xwt.mips.Runtime; -import org.xwt.mips.Interpreter; +import org.ibex.nestedvm.Runtime; class Env { public static void main(String[] args) throws Exception { @@ -21,7 +20,7 @@ class Env { Runtime rt; if(className.endsWith(".mips")) { - rt = new Interpreter(className); + rt = new org.ibex.nestedvm.Interpreter(className); } else { Class c = Class.forName(className); if(!Runtime.class.isAssignableFrom(c)) { System.err.println(className + " isn't a MIPS compiled class"); System.exit(1); }