Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ozy/ToyJVM
An experimental Java Bytecode Interpreter written in C
https://github.com/ozy/ToyJVM
Last synced: 2 months ago
JSON representation
An experimental Java Bytecode Interpreter written in C
- Host: GitHub
- URL: https://github.com/ozy/ToyJVM
- Owner: ozy
- License: gpl-2.0
- Created: 2019-02-22T17:08:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T08:46:46.000Z (almost 6 years ago)
- Last Synced: 2024-08-03T18:13:12.934Z (6 months ago)
- Language: C
- Homepage:
- Size: 61.5 KB
- Stars: 160
- Watchers: 10
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - ToyJVM
README
# ToyJVM
Experimental Java Bytecode Interpreter written in C to understand Java concepts better.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
## Prerequisites
```Javac``` is required to compile Java codes into Java bytecodes.
## Running the tests
You can run the tests with the ```test.sh``` script. As the project grows up, new tests will be added.
## Running the software
You need to give the class name without extension to the executable. For example ```./bin/main test/HelloWorld``` will run the test/HelloWorld.class file.