Bin2TBIN (ftp://ftp.dalsemi.com/pub/tini/ds80c400/tools/bin2tbin/Bin2TBIN.java)
Source code for a tool to convert a binary file to a TBIN formatted file. By 'binary' data, we mean that no extra processing is done on the data in the file--the TBIN formatting is simply added to load the binary data at the specified address. This tool should not be used to convert HEX files to TBIN files. (Format: Java source code)
FixBankNum (ftp://ftp.dalsemi.com/pub/tini/ds80c400/tools/fixbanknum/FixBankNum.java)
Retargets a TBIN file for a different bank. The first TBIN record in the file is retargetted for the bank number that is input to the program. Any TBIN records following are retargetted for the same 'delta' as the first one. For instance, if you retarget to bank 60h and the your TBIN file contains data for banks 40h, 42h, and 45h, your new TBIN file will contain data for banks 60h, 62h, and 65h. (Format: Java source code)
Hex2TBIN (ftp://ftp.dalsemi.com/pub/tini/ds80c400/tools/hex2tbin/)
Converts an ASCII HEX file into a TBIN file. Note that the conversion is not smart--if there are unspecified ranges within the HEX file, they may be specified as 0's in the TBIN file. Only HEX records types 0 (data), 1 (end-of-file), and 4 (extended linear address) are supported. (Format: Java source code)