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