Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Pfarrer/rust-jvm
Simple Java Virtual Machine written in pure Rust
https://github.com/Pfarrer/rust-jvm
bytecode-interpreter java jvm rust
Last synced: 2 months ago
JSON representation
Simple Java Virtual Machine written in pure Rust
- Host: GitHub
- URL: https://github.com/Pfarrer/rust-jvm
- Owner: Pfarrer
- Created: 2017-10-17T21:24:01.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-08-18T19:03:55.000Z (5 months ago)
- Last Synced: 2024-08-18T20:23:34.655Z (5 months ago)
- Topics: bytecode-interpreter, java, jvm, rust
- Language: Rust
- Homepage:
- Size: 410 KB
- Stars: 35
- Watchers: 5
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-jvm
A very basic JVM implementation in Rust out of pure curiosity.
For educational purposes only!See it in action:
[![asciicast](https://asciinema.org/a/534136.svg)](https://asciinema.org/a/534136)## Goals
- [x] Java 5
- [x] Parse Classfiles
- [x] Initialize VM & Runtime
- [x] Run simple HelloWorld- [ ] Java 11
- [x] Parse Classfiles
- [ ] Initialize VM & Runtime
- [ ] Run simple HelloWorld