biew 5.7.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News biew 5.7.2 (Default branch)
# 1  
Old 01-11-2009
biew 5.7.2 (Default branch)

BIEW (Binary vIEW) is a portable advanced file viewer with a built-in editor for binary, hexadecimal, and disassembler modes. It contains a highlighting Java/AVR/i86-AMD64/ARM-XScale/PPC64 disassembler, full preview of MZ, NE, PE, LE, LX, DOS.SYS, NLM, ELF, a.out, arch, coff32, PharLap, and rdoff executable formats, a code guider, and many other features. License: GNU General Public License (GPL) Changes:
Minor fixes and cleanups were made. A workaround was added for the output of an external assembler. The generic build was fixed. Broken output on UTF terminals was fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
dis(1)																	    dis(1)

NAME
dis - object code disassembler SYNOPSIS
/usr/ccs/bin/dis [-C] [-o] [-V] [-L] [-d sec] [-D sec] [-F function] [-l string] [-t sec] file... The dis command produces an assembly language listing of file, which can be an object file or an archive of object files. The listing includes assembly statements and an octal or hexadecimal representation of the binary that produced those statements. Options are interpreted by the disassembler and can be specified in any order. The following options are supported: -C Displays demangled C++ symbol names in the disassembly. -d sec Disassembles the named section as data, printing the offset of the data from the beginning of the section. -D sec Disassembles the named section as data, printing the actual address of the data. -F function Disassembles only the named function in each object file specified on the command line. The -F option can be specified mul- tiple times on the command line. -l string Disassembles the archive file specified by string. For example, one would issue the command dis -l x -l z to disassemble libx.a and libz.a, which are assumed to be in LIBDIR. -L Invokes a lookup of C-language source labels in the symbol table for subsequent writing to standard output. -o Prints numbers in octal. The default is hexadecimal. -t sec Disassembles the named section as text. -V Prints, on standard error, the version number of the disassembler being executed. If the -d, -D, or -t options are specified, only those named sections from each user-supplied file is disassembled. Otherwise, all sections containing text is disassembled. On output, a number enclosed in brackets at the beginning of a line, such as [5], indicates that the break-pointable line number starts with the following instruction. These line numbers is printed only if the file was compiled with additional debugging information, for example, the -g option of cc(1B). An expression such as <40> in the operand field or in the symbolic disassembly, following a relative dis- placement for control transfer instructions, is the computed address within the section to which control is transferred. A function name appears in the first column, followed by () if the object file contains a symbol table. The following operand is supported: file A path name of an object file or an archive (see ar(1)) of object files. See environ(5) for descriptions of the following environment variables that affect the execution of dis: LC_CTYPE, LC_MESSAGES, and NLSPATH. LIBDIR If this environment variable contains a value, use this as the path to search for the library. If the variable contains a null value, or is not set, it defaults to searching for the library under /usr/lib. The following exit values are returned: 0 Successful completion. >0 An error occurred. /usr/lib default LIBDIR See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWbtool | +-----------------------------+-----------------------------+ |Interface Stability |See below. | +-----------------------------+-----------------------------+ The human readable output is Unstable. The command line options are Evolving. ar(1), as(1), cc(1B), ld(1), a.out(4), attributes(5), environ(5) The self-explanatory diagnostics indicate errors in the command line or problems encountered with the specified files. 23 Jun 2005 dis(1)