LinuxCommandLibrary

mm2gv

Convert mmdasm disassembly to Graphviz dot format

TLDR

Convert a graph from mm to gv format

$ mm2gv -o [output.gv] [input.mm]
copy

Convert a graph using stdin and stdout
$ cat [input.mm] | mm2gv > [output.gv]
copy

Display help
$ mm2gv -?
copy

SYNOPSIS

mm2gv [options] [infile]

PARAMETERS

-o
    Specifies the name of the output DOT file. If not provided, output is written to standard output.


-s
    Sets a floating-point scale factor for node separation in the generated graph. A larger scale value tends to spread nodes further apart.


-N
    Defines the shape of the nodes representing rows and columns in the graph. Common shapes include box, circle, ellipse, etc. Refer to the dot man page for a full list of available node shapes.


-E