-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
66 lines (65 loc) · 3.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Unofficial DynASM Documentation</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/dynasm-doc.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".sidenav">
<div class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header" id="top">
<a class="navbar-brand" href="index.html">The Unofficial DynASM Documentation</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
<li><a href="reference.html">Reference</a></li>
<li><a href="instructions.html">Instruction Listing</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="jumbotron">
<p>DynASM is a preprocessor and tiny runtime library for creating assemblers and JIT compilers in C or C++.</p>
</div>
<p>DynASM was written for, and is maintained as part of, <a href="http://luajit.org/">LuaJIT</a>. LuaJIT 1 used
DynASM in a JIT role. LuaJIT 2 doesn't use DymASM in a JIT role, but LuaJIT 2's interpreter is hand-written in assembly,
and it uses DynASM as a powerful cross-platform assembler.</p>
<p>To get the latest copy of DymASM, run the following:</p>
<pre><span class="c">git clone http://luajit.org/git/luajit-2.0.git</span>
<span class="c">cd luajit-2.0/dynasm</span></pre>
<p>The <a href="http://luajit.org/dynasm.html">official documentation</a> for DynASM is extremely spartan, which can
make it difficult to get started with DynASM. For using DynASM in a JIT role, this unofficial documentation's
<strong><a href="tutorial.html">tutorial</a></strong> is recommended as a starting point. Once you're more familiar with DynASM,
the <strong><a href="reference.html">reference</a></strong> and <strong><a href="instructions.html">instruction listing</a></strong>
pages are recommended reading for fleshing out your DynASM knowledge.</p>
<p>Note that DynASM supports the x86, x64, ARM, PowerPC, and MIPS instruction sets, but this unofficial documentation
only covers x86 and x64.</p>
</div>
<div class="col-md-3">
<div class="sidenav hidden-print" role="complementary">
<ul class="nav">
</li>
<li class="top"><a href="#top">Back to top</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="http://luajit.org/dynasm.html">DynASM</a> is free software developed by <a href="http://luajit.org/contact.html">Mike Pall</a>, released under the <a href="http://www.opensource.org/licenses/mit-license.php">MIT license</a>.<br>
This documentation is authored by <a href="https://github.com/corsix">Peter Cawley</a>, and is released as <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/dynasm-doc.js"></script>
</body>
</html>