-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
62 lines (34 loc) · 1.15 KB
/
README
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
Summary
js-vm (formerly mzscheme-vm): an implementation of the Racket VM
in Javascript.
Prerequisites:
* mzscheme 5.0.1
use mzscheme 5.0.1, as the VM may change from version to version.
##################################################
Installation:
1. Check out the git repository.
$ git clone git://github.com/dyoo/mzscheme-vm.git
2. Check out the submodules within the git repository.
$ cd mzscheme-vm
$ git submodule init
$ git submodule update
##################################################
Running core opcode tests:
$ cd tests/unit-tests
$ ./run-tests
Running mz-tests basic test suite
$ cd tests/mz-tests
$ racket ../../mzjs.rkt basic.rktl
$ google-chrome basic/index.html
Another set of tests:
$ cd tests/moby-programs
$ racket ../../mzjs.rkt all-tests.rkt
$ google-chrome all-tests/index.html
######################################################################
Contributors: the following folks have helped to implement
mzscheme-vm:
* Ethan Cecchetti
* Scott Newman
* Zhe Zhang
* Shriram Krishnamurthi
* Emmanuel Schanzer