# oolong **Repository Path**: ZSK-CRS/oolong ## Basic Information - **Project Name**: oolong - **Description**: No description available - **Primary Language**: Java - **License**: LGPL-2.1 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-03-03 - **Last Updated**: 2024-10-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Copied from code from the book Programming for the Java (tm) Virtual Machine [Original Readme](original_readme.md) To use oolong (A JVM Assembler) ``` Usage: Oolong [-g] [-n] [-d directory] [-verbose] file1.j -g Generate debugging info -n Generate debugging info using auto-generated line numbers -d Place output files in directory -verbose Verbose messages ``` Eg. ``` $> java -cp .:./target/oolong-1.0-SNAPSHOT.jar Oolong -d ./target/j -n -verbose ``` or better ``` $> ./oolong.sh ``` generated class file will be in target/j directory That's all. Have fun JVM programming ...