]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/udis86/lib/contrib/docs/index.html
update
[l4.git] / l4 / pkg / udis86 / lib / contrib / docs / index.html
1 <html>
2 <head>
3     <title>Udis86 - Disassembler Library for x86 and x86-64</title>
4     <style type="text/css">@import 'style.css';</style>
5 </head>
6 <body>
7 <div id="wrapper">
8  <div id="content">
9
10   <div id="banner">
11     <h1>udis86</h1> 
12     <h2>Disassembler Library for x86 and x86-64</h2>
13   </div>
14
15   <div id="intro">
16     <p>udis86 is an easy-to-use minimalistic disassembler 
17     library (<i>libudis86</i>) for the x86 and x86-64 class 
18     of instruction set architectures. The primary intent of 
19     the design and development of udis86 is to aid software 
20     development projects that entail binary code analysis.</p>
21
22     <div style="font-size:0.9em;">
23     <a href="http://sourceforge.net/projects/udis86">Project site</a> &middot;
24     <a href="http://sourceforge.net/tracker/?group_id=96233">Bug Tracking</a> &middot;
25     <a href="x86/optable.xml">x86/optable.xml</a>
26     </div>
27   </div>
28
29
30   <div id="get-udis86">
31     <h3>Get sources</h3>
32     <p> <big>Latest Release: <a href="http://prdownloads.sourceforge.net/udis86/udis86-1.7.tar.gz?download">udis86-1.7.tar.gz</a></big> </p>
33     udis86 is now maintained using the <a href="http://git-scm.com">git</a>
34     source code control system. The latest, stable code is available as the
35     master branch in the 
36     <a href="https://sourceforge.net/scm/?type=git&group_id=96233">sourceforge project git repository.</a>
37     <pre>git://udis86.git.sourceforge.net/gitroot/udis86/udis86</pre>
38     <h3>Get documentation</h3> 
39     The reference manual available in <code>$SRC/docs/manual</code>, 
40     or you may <a href="manual/manual.html">browse online</a>.
41  </div>
42
43   <div id="features">
44 <h3>libudis86</h3>
45         <ul>
46         <li>Full support for the <i>x86 and x86-64 (AMD64)</i> range of instruction set
47         architectures.</li>
48         <li>Full support  for all <i> AMD-V, INTEL-VMX, MMX, SSE, SSE2, SSE3, FPU(x87), and 
49         AMD 3Dnow! </i> instructions.</li>
50         <li>Supports 16bit, 32bit, and 64bit disassembly modes.</li>
51         <li>Supports instruction meta-data using XML based decode tables.</li>
52         <li>Generates output in <i>AT&T</i> or <i>INTEL</i> assembler language syntaxes.</li>
53         <li>Supports flexbile input methods: File, Buffer, and Hooks.</li>
54         <li>Reentrant.</li>
55         <li>Clean and very easy-to-use API.</li>
56         </ul>
57 <h3>udcli</h3>
58
59         A front-end incarnation of this library, udcli is a small command-line tool 
60         for your quick disassembly needs.
61     <pre>
62 $ echo "65 67 89 87 76 65 54 56 78 89 09 00 87" | udcli -32 -x 
63 0000000000000000 656789877665    mov [gs:bx+0x6576], eax
64 0000000000000000 54              push esp
65 0000000000000000 56              push esi
66 0000000000000000 7889            js 0x93 
67 0000000000000000 0900            or [eax], eax </pre>
68   </div>
69
70 <a name="author"></a>
71 <h3>Author</h3>
72
73 <p>Authored and maintained by <a href="http://sig9.com/vivek/">Vivek Thampi</a>.
74 You can reach me at <i>vivek[at]sig9[dot]com</i>. Please let me know if you are
75 using udis86, have ideas for it, or would like to comment on it.</p>
76
77 <h3>License</h3>
78
79 <p>Udis86 is an open source project, and is distributed under the terms of
80 the <a href="http://udis86.git.sourceforge.net/git/gitweb.cgi?p=udis86;a=blob_plain;f=LICENSE;hb=master">BSD License</a>.</p>
81
82 <div style="text-align:center"><small>&copy; 2009 Vivek Thampi</small></div>
83
84 </div>
85 </div>
86
87 </body>
88 </html>