This is a disassembler (written in C) to decode Lilith M-Code object (.OBJ) files.
It is derived from Niklaus Wirth's original decoder which he wrote in 1984 for the Modula-2 Single Pass Compiler. The source code for this compiler, along with the original Modula-2 sources for the decoder, was discovered in 2021.
The 1984 version of the decoder is somewhat less complex than an earlier version written by Ch. Jacobi in 1981 for the Modula-2 Multipass Compiler.
- Download the .tar.gz packages from the "Releases" page.
- Extract and build:
$ tar xzf m2decode-x.y.tar.gz $ cd m2decode-x.y $ ./configure $ make && make install
USAGE: mdec [-hV] [-o output_file] [object_file]
-h Show this help information
-V Show version information
-o Decode to output_file (default: STDOUT)
object_file is the filename of a Lilith M-Code (OBJ) file.
(Reads from standard input if no filename given.)
-
mdec test.OBJ
Decodes the object file
test.OBJ
and writes the disassembled result to standard output. -
mdec -o test.txt test.OBJ
As above, but writes the output to the file
test.txt
instead.