• Description:
    This is small tool which displays powerd binary modules in ascii format.

  • Syntax:
      dmod SOURCE/A
    

    Where source must be binary module name including full path and '.b' extension.

  • Bugs:
    Procedures which contain an inline code (RPROC with '=') won't be shown succefully, because dmod currently doesn't handle '\t', '\n' and other formating characters. So the procedure like:
      RPROC nop()='\tnop\n'
    

    will be shown sth like:
      RPROC nop()='     nop
      '