X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Ftests%2FEnv.java;h=be64739d63b48648538a5026170a06cd5c1a47fb;hb=034a42fa65955289442614ef9914e5474fac62aa;hp=59048b527e0c8140ab29b6971ff3c80ee881b185;hpb=3eb15f58ca0911489d7d9bdc0ac2c575d27a68d8;p=nestedvm.git 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); }