-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (73 loc) · 2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!Doctype HTML>
<!-- This is the Index page for the Assembly Language Reference Book. -->
<!-- Author: Menachem Salomon <[email protected]> -->
<html>
<head>
<title>
Assembly Language Reference - Table of Contents
</title>
<style>
.center { text-align: center; }
.caps { font-variant: small-caps; }
.sublist { margin: 1em auto; }
</style>
</head>
<body>
<header class="center">
<h2 class="caps">Menachem Salomon's</h2>
<h1>ASSEMBLY LANGUAGE REFERENCE</h1>
<h3>For the 80x86 Series of Intel Microchips</h3>
</header>
<p>
This is a reference for the Intel x86 microchip series through the 80486
(8086/8088, 80186/80188, 80286, 80386, and 80486. At the time of the original
writing, a reference manual for the Pentium series (Intel's name for the 80586)
was not available.
</p>
<p>
In recent years, the PC microchips manufactured by Intel and AMD have been
referred to as the IA-32 (Intel Architecture, 32-bit) and IA-64 family.
</p>
<p>
The information in this reference is adapted from the
<cite>Borland Turbo Assembler Quick Reference Guide</cite>.
</p>
<p>
<i>NOTE: Hexadecimal numbers are generally given in the C languate format.</i>
</p>
<h3>Table of Contents:</h3>
<ol type="I">
<li class="sublist">
<a class="caps" href="instrfmt.html">Instruction Format</a>
<ol type="A">
<li>Format of a Machine Code Instruction</li>
<li>Instruction Prefix</li>
<li>Address-size and Operand-size Overrides</li>
<li>Segment Override</li>
<li>The ModR/M and Displacement Fields</li>
<li>The SIB Byte</li>
<li>Immediate Operand Field</li>
</ol>
</li>
<li class="sublist">
<a class="caps" href="reffmt.html">Explanation of Reference Format</a>
<ol type="A">
<li>Introduction</li>
<li>Flag Information</li>
<li>Explanation of Opcodes</li>
<li>Explanation of Operands</li>
</ol>
</li>
<li class="sublist">
<a class="caps" href="instrref.html">Instruction Reference</a>
<ol>
<li>ASCII Adjustments</li>
<li></li>
</ol>
</li>
</ol>
<footer>
<small>Copyright © 2017 by Menachem A. Salomon</small>
</footer>
</body>
</html>