2011-07-02 19:38:10 +01:00
|
|
|
|
2011-07-01 22:28:15 +01:00
|
|
|
include("linearDataStream.js");
|
|
|
|
include("constantPool.js");
|
2011-07-03 21:43:11 +01:00
|
|
|
include("attributes.js");
|
|
|
|
include("infos.js");
|
2011-07-04 18:20:27 +01:00
|
|
|
include("class.js");
|
|
|
|
include("cpu.js");
|
2011-07-08 17:29:57 +01:00
|
|
|
var test_jvm;
|
2011-07-01 22:28:15 +01:00
|
|
|
function main (args){
|
2011-07-08 17:29:57 +01:00
|
|
|
test_jvm = new JVM({},["[I"])
|
|
|
|
test_jvm.run();
|
2011-07-01 22:28:15 +01:00
|
|
|
}
|