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: 14 days 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-09-10T18:09:11.000Z (8 months ago)
- Last Synced: 2025-03-27T05:22:48.735Z (about 1 month ago)
- Topics: bytecode-interpreter, java, jvm, rust
- Language: Rust
- Homepage:
- Size: 430 KB
- Stars: 35
- Watchers: 4
- 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:
[](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