Converts any file into an ASM file that can be included.  This is great for
converting files that you wanna put directly into your EXE file.

It's simply, just use:

 BIN2ASM file1 file2 labelname

Where:
 file1 is the input file to be converted to a ASM file
 file1 is the output file and will be setup as follows:

.data
  labelname db ...
  db ...
  db ...
 (etc.)

The labelname is the name given on the command line.  The dots represent
the data that was in the file.

TTYL
