diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-12-05 23:07:35 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-12-05 23:07:35 +0100 |
commit | 7e98f5def5942969f97f5f015e7fb8417793d132 (patch) | |
tree | 7234dbabf5e59b78c7282ade2d1da4228618331f | |
parent | f3d8f8eb16d0da37c84c55fccb5a73b06b2d35d9 (diff) | |
download | juicebox-asm-7e98f5def5942969f97f5f015e7fb8417793d132.tar.gz juicebox-asm-7e98f5def5942969f97f5f015e7fb8417793d132.zip |
update readme to describe examples
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -51,5 +51,11 @@ fn main() { } ``` +The [`examples/`](examples/) folder provides additional examples: + +- [`fib.rs`](examples/fib.rs) jit compile a function to compute the `fibonacci` sequence. +- [`add.rs`](examples/add.rs) jit compile a function calling another function compiled into the example. +- [`tiny_vm.rs`](examples/tiny_vm.rs.rs) define a minimal `virtual machine (VM)` which demonstrates a simple jit compiler for translating VM guest software. + ## License This project is licensed under the [MIT](LICENSE) license. |