INSTALL
Installation instructions for compiling AsmGofer.
BCEL.jar
Tool to convert class files into Jasmin syntax. To use
BCEL (Byte Code Engineering Library),
extend the CLASSPATH variable with this file. For example,
bash:
export CLASSPATH=$CLASSPATH:/jbook/misc/BCEL.jar
tcsh:
setenv CLASSPATH $CLASSPATH:/jbook/misc/BCEL.jar
if /jbook is the path where the root directory of the CD
is located.
The command java JasminVisitor C.class converts the class
C to Jasmin and writes the file C.j.
if /jbook is the path where the root directory of the CD
is located.
The command java jasmin.Main C.j reads the file
C.j and creates the class file C.class.