I see some other files in the MASM32\BIN\ directory, such as editbin, dumpbin, bl, what do they do?
editbin and dumpbin are used to dump the structure of coff files to create libs from them if I'm not mistaking. bl I don't know :/
editbin is for changing executables - like rebasing DLLs to new
base addresses, changing subsystem, computing CRC etc.
DumpBin dumps information about COFF/PE files. You should try
running these files, they'll give you a usage summary, should be
quite self explanatory really.
base addresses, changing subsystem, computing CRC etc.
DumpBin dumps information about COFF/PE files. You should try
running these files, they'll give you a usage summary, should be
quite self explanatory really.