View Single Post
  #2  
Old 02-22-2018, 13:55
dosprog dosprog is offline
Friend
 
Join Date: Feb 2018
Posts: 114
Rept. Given: 0
Rept. Rcvd 17 Times in 16 Posts
Thanks Given: 33
Thanks Rcvd at 146 Times in 74 Posts
dosprog Reputation: 17
Some similar tools -

FILE2DB (DOS16CMD & WIN32CMD)
- transforms binary file into asm "db" code. Works very fast.
Produced DB code is DEC for compact resulting ASM code size.
Tested with binary files up to 70Mb size - Ok.

BIN2DB - Another set of BIN->HEX/Dx translators (DOS16CMD) -
- Produce ASM INC file in DB/DW/DD/DQ formats. Q&D, not optimised. But used without changeing
( Made 1st day of a new millenium)) )

HEXDUMP(+SRC) - Old BIN<->HEX translator (c)Adam Rogoyski.
And its remake for WIN32CMD - BIN2HEX.

EMIT (DOS16CMD) - converts BIN files into TurboC call of __emit__(); Ex: __emit__(0x90,0x90,0xCD,0x21);
and EMITc (WIN32CMD) - converts binaries into C-declare, Ex: unsigned char c[]="\x90\xCD\x21";

Uniquely must have.


--Add--

See also HIEW32 HEM-PlugIn for converting HIEW multibyte selection into C/Asm code - ->MBYTES2.HEM<-



Last edited by dosprog; 04-15-2018 at 15:18.
Reply With Quote