Pascal Compiler README o To build the java classfile disassembler, type $ make disasm The binary "dasm" will disassemble java classfiles compiled with any Java2 compiler. No known issues. o To build the pascal compiler, type $ make The binary "pc" can be used to compile Pascal programs. A few sample Pascal programs are provided in the test directory. o The code generator in codegen/ takes the constant pool and the code array (generated by the parser) as input; The generator builds the standard methods (the default Object constructor and main method), and writes the code array to the main method's code attribute. o The output of the compiler is a JDK 1.4.2 classfile (Minor: 0x0, Major: 0x2e). To run the binary, type $ java test