A simple JVM made in C++11
cd jvm
mkdir out
cd out
cmake ..
make
./jvm "../../samples/double_aritmetica.class" > output.txt
.
├── build # Stuff
├── doc # Documentation
├── samples # .class samples for testing
└── src # Code
├── include # Includes (.hpp)
├── lib # Implementation of includes (.cpp)
└── tests # Some tests on the libs