-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjjvm.html
76 lines (67 loc) · 1.65 KB
/
jjvm.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<title>jjvm byte code interpreter</title>
</head>
<body>
<center>
<blockquote>
<table width='70%' cols='1' border='0'>
<tr><td align='center'>
<b><h2>jjvm</h2><br /><h4>A J*va VM Written in J*va<h4></b>
</td></tr>
<tr><td bgcolor='#DDDD88'>
<font color='#000000'>
Blurb
</font>
</td></tr>
<tr><td>
If you're writing an application embedded byte code interpreter, why start from
scratch? By using the JVM specification you get instant documentation and
can use existing front-end compilers for testing and validation.
<br />
</td></tr>
<tr><td bgcolor='#DDDD88'>
Features
</td></tr>
<tr><td>
<blockquote>
<ul>
<li>Full J*va instruction set</li>
<li>Library classes (classpath) are implemented inside the VM for max performance</li>
<li>Public Domain</li>
</ul>
</blockquote>
</td></tr>
<tr><td bgcolor='#DDDD88'>
ToDo
</td></tr>
<tr><td>
<blockquote>
<ul>
<li>Only a few library classes are partially implemented (System, String, StringBuffer, Thread, Object, PrintWriter, Exception, Array, Null)</li>
<li>The code has not been throughly tested and is alpha quality</li>
<li>Class Class and ClassLoader are not properly implemented</li>
</ul>
</blockquote>
</td></tr>
<tr><td bgcolor='#DDDD88'>
Download
</td></tr>
<tr><td>
<a href='jjvm0a1.zip'>Sources</a><br />
<a href='www.javasoft.com'>Documentation</a>
<br />
</td></tr>
<tr><td bgcolor='#DDDD88'>
Contact
</td></tr>
<tr><td>
<a href='mailto:john_garrison@yahoo.com'>MailTo Author</a><br />
<a href='http://resumes.dice.com/johngarrison'>Resume</a>
<br />
</td></tr>
</table>
</blockquote>
</center>
</body>
</html>