disassembler and better hex editor
Posted: Mon Jul 23, 2007 7:13 am
I love text pad but i do not like the hex editor (viewer rather). I would like it to be a full editor so you can edit binary (hex) values just as you would normal text. Also please make an option to view (and edit) in binary, that is, 0A6F would be displayed as 101001101111.
Also, i would like a disassembler. It wouldn't be hard, just convert the binary values to assembly language if the file is opened as assembly (make option in 'open', File format: auto, text, binary, assembly). I want to write in assembly for x86, 8051 and MIPS machines so it would be nice to have a syntax file that maps the binary to assembly:
something of that sort. Just so that i can define different types of assembly.
thanks
Also, i would like a disassembler. It wouldn't be hard, just convert the binary values to assembly language if the file is opened as assembly (make option in 'open', File format: auto, text, binary, assembly). I want to write in assembly for x86, 8051 and MIPS machines so it would be nice to have a syntax file that maps the binary to assembly:
Code: Select all
instruction_size = 32
[register]
0000 = a
0001 = b
...
[opcodes]
0000 = add
0001 = sub
[format]
rtype = opcode | register1 | register2
jtype = opcode | jump_address
thanks