summary refs log tree commit diff stats
path: root/blog/asm
diff options
context:
space:
mode:
authorCrystal <crystal@wizard.tower>2024-04-10 21:05:54 +0100
committerCrystal <crystal@wizard.tower>2024-04-10 21:05:54 +0100
commit7fdc20eb453ce242c11b65f6b5d4b78a23cb2d52 (patch)
tree3ea3b83afcc8bcb7effab7830b4b3c3d7e874d32 /blog/asm
parentd034098994e0eb7a49b2a8fb23e8aa5e12b7c1b8 (diff)
downloadwww-7fdc20eb453ce242c11b65f6b5d4b78a23cb2d52.tar.gz
Me when the when me me
Diffstat (limited to 'blog/asm')
-rw-r--r--blog/asm/1.html154
1 files changed, 86 insertions, 68 deletions
diff --git a/blog/asm/1.html b/blog/asm/1.html
index 31491a2..4ed3574 100644
--- a/blog/asm/1.html
+++ b/blog/asm/1.html
@@ -3,7 +3,7 @@
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
 <head>
-<!-- 2024-03-23 Sat 15:57 -->
+<!-- 2024-04-10 Wed 21:05 -->
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
 <meta name="viewport" content="width=device-width, initial-scale=1" />
 <title>x86 Assembly from my understanding</title>
@@ -23,9 +23,9 @@
 <p>
 Soooo this article (or maybe even a series of articles, who knows ?) will be about x86 assembly, or rather, what I understood from it and my road from the bottom-up hopefully reaching a good level of understanding
 </p>
-<div id="outline-container-org9e6b7e3" class="outline-2">
-<h2 id="org9e6b7e3">Memory :</h2>
-<div class="outline-text-2" id="text-org9e6b7e3">
+<div id="outline-container-orgd66d87f" class="outline-2">
+<h2 id="orgd66d87f">Memory :</h2>
+<div class="outline-text-2" id="text-orgd66d87f">
 <p>
 Memory is a sequence of octets (Aka 8bits) that each have a unique integer assigned to them called <b>The Effective Address (EA)</b>, in this particular CPU Architecture (the i8086), the octet is designated by a couple (A segment number, and the offset in the segment)
 </p>
@@ -40,9 +40,9 @@ Memory is a sequence of octets (Aka 8bits) that each have a unique integer assig
 The offset and segment are encoded in 16bits, so they take a value between 0 and 65535
 </p>
 </div>
-<div id="outline-container-orgb6ce3ec" class="outline-4">
-<h4 id="orgb6ce3ec">Important :</h4>
-<div class="outline-text-4" id="text-orgb6ce3ec">
+<div id="outline-container-orgb9ec69c" class="outline-4">
+<h4 id="orgb9ec69c">Important :</h4>
+<div class="outline-text-4" id="text-orgb9ec69c">
 <p>
 The relation between the Effective Address and the Segment &amp; Offset is as follow :
 </p>
@@ -52,8 +52,8 @@ The relation between the Effective Address and the Segment &amp; Offset is as fo
 </p>
 </div>
 <ul class="org-ul">
-<li><a id="org24f01a3"></a>Example :<br />
-<div class="outline-text-5" id="text-org24f01a3">
+<li><a id="org407193f"></a>Example :<br />
+<div class="outline-text-5" id="text-org407193f">
 <p>
 Let the Physical address (Or Effective Address, these two terms are interchangeable) <b>12345h</b> (the h refers to Hexadecimal, which can also be written like this <b>0x12345</b>), the register <b>DS = 1230h</b> and the register <b>SI = 0045h</b>, the CPU calculates the physical address by multiplying the content of the segment register <b>DS</b> by 10h (or 16) and adding the content of the register <b>SI</b>. so we get : <b>1230h x 10h + 45h = 12345h</b>
 </p>
@@ -66,16 +66,16 @@ Now if you are a clever one ( I know you are, since you are reading this &lt;3 )
 </li>
 </ul>
 </div>
-<div id="outline-container-org9256db9" class="outline-3">
-<h3 id="org9256db9">Registers</h3>
-<div class="outline-text-3" id="text-org9256db9">
+<div id="outline-container-orgb81ab14" class="outline-3">
+<h3 id="orgb81ab14">Registers</h3>
+<div class="outline-text-3" id="text-orgb81ab14">
 <p>
 The 8086 CPU has 14 registers of 16bits of size. From the POV of the user, the 8086 has 3 groups of 4 registers of 16bits. One state register of 9bits and a counting program of 16bits inaccessible to the user (whatever this means).
 </p>
 </div>
-<div id="outline-container-orgfc1a89c" class="outline-4">
-<h4 id="orgfc1a89c">General Registers</h4>
-<div class="outline-text-4" id="text-orgfc1a89c">
+<div id="outline-container-orgcd127f7" class="outline-4">
+<h4 id="orgcd127f7">General Registers</h4>
+<div class="outline-text-4" id="text-orgcd127f7">
 <p>
 General registers contribute to arithmetic&rsquo;s and logic and addressing too.
 </p>
@@ -126,28 +126,28 @@ Now here are the Registers we can find in this section:
 </div>
 </div>
 </div>
-<div id="outline-container-orge6b17b9" class="outline-3">
-<h3 id="orge6b17b9">Addressing and registers&#x2026;again</h3>
-<div class="outline-text-3" id="text-orge6b17b9">
+<div id="outline-container-orgde83b9e" class="outline-3">
+<h3 id="orgde83b9e">Addressing and registers&#x2026;again</h3>
+<div class="outline-text-3" id="text-orgde83b9e">
 </div>
-<div id="outline-container-orgd76cd4e" class="outline-4">
-<h4 id="orgd76cd4e">I realized what I wrote here before was almost gibberish, sooo here we go again I guess ?</h4>
-<div class="outline-text-4" id="text-orgd76cd4e">
+<div id="outline-container-org598f23b" class="outline-4">
+<h4 id="org598f23b">I realized what I wrote here before was almost gibberish, sooo here we go again I guess ?</h4>
+<div class="outline-text-4" id="text-org598f23b">
 <p>
 Well lets take a step back to the notion of effective addresses VS relative ones.
 </p>
 </div>
 </div>
-<div id="outline-container-org86b6da3" class="outline-4">
-<h4 id="org86b6da3">Effective = 10h x Segment + Offset . Part1</h4>
-<div class="outline-text-4" id="text-org86b6da3">
+<div id="outline-container-orga54d5c9" class="outline-4">
+<h4 id="orga54d5c9">Effective = 10h x Segment + Offset . Part1</h4>
+<div class="outline-text-4" id="text-orga54d5c9">
 <p>
 When trying to access a specific memory space, we use this annotation <b>[Segment:Offset]</b>, so for example, and assuming <b>DS = 0100h</b>. We want to write the value <b>0x0005</b> to the memory space defined by the physical address <b>1234h</b>, what do we do ?
 </p>
 </div>
 <ul class="org-ul">
-<li><a id="org63a0b4e"></a>Answer :<br />
-<div class="outline-text-5" id="text-org63a0b4e">
+<li><a id="org330429e"></a>Answer :<br />
+<div class="outline-text-5" id="text-org330429e">
 <div class="org-src-container">
 <pre class="src src-asm"><span style="color: #89b4fa;">MOV</span> [DS:0234h], 0x0005
 </pre>
@@ -159,7 +159,7 @@ Why ? Let&rsquo;s break it down :
 
 
 
-<div id="org9e1af4e" class="figure">
+<div id="orge9d2dab" class="figure">
 <p><img src="../../src/gifs/lain-dance.gif" alt="lain-dance.gif" />
 </p>
 </div>
@@ -177,9 +177,9 @@ Simple, right ?, now for another example
 </li>
 </ul>
 </div>
-<div id="outline-container-org704a2f5" class="outline-4">
-<h4 id="org704a2f5">Another example :</h4>
-<div class="outline-text-4" id="text-org704a2f5">
+<div id="outline-container-org21257b6" class="outline-4">
+<h4 id="org21257b6">Another example :</h4>
+<div class="outline-text-4" id="text-org21257b6">
 <p>
 What if we now have this instruction ?
 </p>
@@ -192,9 +192,9 @@ What does it do ? You might or might not be surprised that it does the exact sam
 </p>
 </div>
 </div>
-<div id="outline-container-org5f7abb9" class="outline-4">
-<h4 id="org5f7abb9">Segment + Register &lt;3</h4>
-<div class="outline-text-4" id="text-org5f7abb9">
+<div id="outline-container-org7c948b1" class="outline-4">
+<h4 id="org7c948b1">Segment + Register &lt;3</h4>
+<div class="outline-text-4" id="text-org7c948b1">
 <p>
 Consider <b>DS = 0100h</b> and <b>BX = BP = 0234h</b> and this code snippet:
 </p>
@@ -230,8 +230,8 @@ The General rule of thumb is as follows :
 </ul>
 </div>
 <ul class="org-ul">
-<li><a id="orgea3e106"></a>Note<br />
-<div class="outline-text-5" id="text-orgea3e106">
+<li><a id="orgec605fb"></a>Note<br />
+<div class="outline-text-5" id="text-orgec605fb">
 <p>
 The values of the registers CS DS and SS are automatically initialized by the OS when launching the program. So these segments are implicit. AKA : If we want to access a specific data in memory, we just need to specify its offset. Also you can&rsquo;t write directly into the DS or CS segment registers, so something like
 </p>
@@ -246,9 +246,9 @@ The values of the registers CS DS and SS are automatically initialized by the OS
 </div>
 </div>
 </div>
-<div id="outline-container-orgb12dbb3" class="outline-2">
-<h2 id="orgb12dbb3">The ACTUAL thing :</h2>
-<div class="outline-text-2" id="text-orgb12dbb3">
+<div id="outline-container-org30acf72" class="outline-2">
+<h2 id="org30acf72">The ACTUAL thing :</h2>
+<div class="outline-text-2" id="text-org30acf72">
 <p>
 Enough technical rambling, and now we shall go to the fun part, the ACTUAL CODE. But first, some names you should be familiar with :
 </p>
@@ -258,9 +258,9 @@ Enough technical rambling, and now we shall go to the fun part, the ACTUAL CODE.
 <li><b>Operands</b> : These are the options passed to the instructions, like <b>MOV dst, src</b>, and they can be anything from a memory location, to a variable to an immediate address.</li>
 </ul>
 </div>
-<div id="outline-container-org216dea5" class="outline-3">
-<h3 id="org216dea5">Structure of an assembly program :</h3>
-<div class="outline-text-3" id="text-org216dea5">
+<div id="outline-container-org03a7d0f" class="outline-3">
+<h3 id="org03a7d0f">Structure of an assembly program :</h3>
+<div class="outline-text-3" id="text-org03a7d0f">
 <p>
 While there is no &ldquo;standard&rdquo; structure, i prefer to go with this one :
 </p>
@@ -276,9 +276,9 @@ While there is no &ldquo;standard&rdquo; structure, i prefer to go with this one
 </div>
 </div>
 </div>
-<div id="outline-container-orgdf5852b" class="outline-3">
-<h3 id="orgdf5852b">MOV dst, src</h3>
-<div class="outline-text-3" id="text-orgdf5852b">
+<div id="outline-container-orgbea80df" class="outline-3">
+<h3 id="orgbea80df">MOV dst, src</h3>
+<div class="outline-text-3" id="text-orgbea80df">
 <p>
 The MOV instruction copies the Second operand (src) to the First operand (dst)&#x2026; The source can be a memory location, an immediate value, a general-purpose register (AX BX CX DX). As for the Destination, it can be a general-purpose register or a memory location.
 </p>
@@ -327,13 +327,13 @@ for segment registers only these types of MOV are supported:
 <b>memory</b>: [BX], [BX+SI+7], variable
 </p>
 </div>
-<div id="outline-container-orgef8aa84" class="outline-4">
-<h4 id="orgef8aa84">Note : The MOV instruction <b>cannot</b> be used to set the value of the CS and IP registers</h4>
+<div id="outline-container-orge229cf5" class="outline-4">
+<h4 id="orge229cf5">Note : The MOV instruction <b>cannot</b> be used to set the value of the CS and IP registers</h4>
 </div>
 </div>
-<div id="outline-container-org3486b9c" class="outline-3">
-<h3 id="org3486b9c">Variables :</h3>
-<div class="outline-text-3" id="text-org3486b9c">
+<div id="outline-container-org05f299b" class="outline-3">
+<h3 id="org05f299b">Variables :</h3>
+<div class="outline-text-3" id="text-org05f299b">
 <p>
 Let&rsquo;s say you want to use a specific value multiple times in your code, do you prefer to call it using something like <b>var1</b> or <b>E4F9:0011</b> ? If your answer is the second option, you can gladly skip this section, or even better, seek therapy.
 </p>
@@ -353,9 +353,9 @@ Anyways, we have two types of variables, <b>bytes</b> and <b>words(which are two
 <b>value</b> - can be any numeric value in any supported numbering system (hexadecimal, binary, or decimal), or &ldquo;?&rdquo; symbol for variables that are not initialized.
 </p>
 </div>
-<div id="outline-container-org89e3a28" class="outline-4">
-<h4 id="org89e3a28">Example code :</h4>
-<div class="outline-text-4" id="text-org89e3a28">
+<div id="outline-container-orga473d7b" class="outline-4">
+<h4 id="orga473d7b">Example code :</h4>
+<div class="outline-text-4" id="text-orga473d7b">
 <div class="org-src-container">
 <pre class="src src-asm">    <span style="color: #cba6f7;">org</span> 100h
     <span style="color: #cba6f7;">.data</span>
@@ -369,9 +369,9 @@ Anyways, we have two types of variables, <b>bytes</b> and <b>words(which are two
 </div>
 </div>
 </div>
-<div id="outline-container-org6f2214f" class="outline-4">
-<h4 id="org6f2214f">Arrays :</h4>
-<div class="outline-text-4" id="text-org6f2214f">
+<div id="outline-container-org8ceedbb" class="outline-4">
+<h4 id="org8ceedbb">Arrays :</h4>
+<div class="outline-text-4" id="text-org8ceedbb">
 <p>
 We can also define Arrays instead of single values using comma separated vaues. like this for example
 </p>
@@ -432,9 +432,9 @@ Of course, you can use DW instead of DB if it&rsquo;s required to keep values la
 </p>
 </div>
 </div>
-<div id="outline-container-org4f06cd3" class="outline-4">
-<h4 id="org4f06cd3">LEA</h4>
-<div class="outline-text-4" id="text-org4f06cd3">
+<div id="outline-container-org8fefb4b" class="outline-4">
+<h4 id="org8fefb4b">LEA</h4>
+<div class="outline-text-4" id="text-org8fefb4b">
 <p>
 LEA stands for (Load Effective Address) is an instruction used to get the offset of a specific variable. We will see later how its used, but first. here is something we will need :
 </p>
@@ -457,18 +457,18 @@ For example:
 assembler supports shorter prefixes as well:
 </p>
 
-<ol class="org-ol">
-<li>- for BYTE PTR</li>
-<li>- for WORD PTR</li>
-</ol>
+<ul class="org-ul">
+<li>b. - for BYTE PTR</li>
+<li>w. - for WORD PTR</li>
+</ul>
 
 <p>
 in certain cases the assembler can calculate the data type automatically.
 </p>
 </div>
 <ul class="org-ul">
-<li><a id="org008d51a"></a>Example :<br />
-<div class="outline-text-5" id="text-org008d51a">
+<li><a id="orgd644e48"></a>Example :<br />
+<div class="outline-text-5" id="text-orgd644e48">
 <div class="org-src-container">
 <pre class="src src-asm">    <span style="color: #cba6f7;">org</span> 100h
     <span style="color: #cba6f7;">.data</span>
@@ -489,9 +489,9 @@ in certain cases the assembler can calculate the data type automatically.
 </li>
 </ul>
 </div>
-<div id="outline-container-org788d7c2" class="outline-4">
-<h4 id="org788d7c2">Constants :</h4>
-<div class="outline-text-4" id="text-org788d7c2">
+<div id="outline-container-org99559c2" class="outline-4">
+<h4 id="org99559c2">Constants :</h4>
+<div class="outline-text-4" id="text-org99559c2">
 <p>
 Constants in Assembly only exist until the code is assembled, meaning that if you disassemble your code later, you wont see your constant definitions.
 </p>
@@ -510,11 +510,29 @@ Of course constants cant be changed, and aren&rsquo;t stored in memory. So they
 </div>
 </div>
 </div>
+<div id="outline-container-org9179f72" class="outline-3">
+<h3 id="org9179f72">⚐ :</h3>
+<div class="outline-text-3" id="text-org9179f72">
+<p>
+Now comes the notion of <b>Flags</b>, which are bits in the <b>Status register</b>, which are used for logical and arithmetical instructions and can take a value of 1 or 0 . Here are the 8 flags that exist for the 8086 CPU :
+</p>
+<ul class="org-ul">
+<li><b>Carry Flag(CF):</b> Set to 1 when there is an <b>unsigned overflow</b>, for example when you add 255 + 1( not in range [0,255] ). by default its set to 0.</li>
+<li><b>Overflow Flag(CF):</b> Set to 1 when there is a <b>signed overflow</b>, for example when you add 100 + 50( not in range [-128, 128[ ). by default its set to 0.</li>
+<li><b>Zero Flag(ZF):</b> Set to 1 when the result is 0. by default its set to 0.</li>
+<li><b>Auxiliary Flag(AF):</b> Set to 1 when there is an <b>unsigned overflow</b> for low nibble (4bits), or in human words : when there is a carry inside the number. for example when you add 29H + 4CH , 9 + C =&gt; 15. So we carry the 1 to 2 + 4 and AF is set to 1.</li>
+<li><b>Parity Flag(PF):</b> Set to 1 when the result has an even number of one bits. and 0 if it has an odd number of one bits. Even if a result is a word, only the Low 8bits are analyzed.</li>
+<li><b>Sign Flag(SF):</b> Self explanatory, set to 1 if the result is negative and 0 if its positive.</li>
+<li><b>Interrupt Enable Flag(IF):</b> When its set to 1, the CPU reacts to interrupts from external devices.</li>
+<li><b>Direction Flag(DF):</b> When this flag is set to 0, the processing is done forward, if its set to 1, its done backward.</li>
+</ul>
+</div>
+</div>
 </div>
 </div>
 <div id="postamble" class="status">
 <p class="author">Author: Crystal</p>
-<p class="date">Created: 2024-03-23 Sat 15:57</p>
+<p class="date">Created: 2024-04-10 Wed 21:05</p>
 </div>
 </body>
 </html>
pan class='oid'>630433cd ^
665a4d70 ^

880b8e91 ^
665a4d70 ^

630433cd ^
880b8e91 ^
665a4d70 ^

880b8e91 ^
665a4d70 ^


16db2a2f ^







fb2ffbd0 ^

c2a74205 ^
c2a74205 ^
fb2ffbd0 ^
16db2a2f ^
665a4d70 ^

880b8e91 ^
665a4d70 ^

16db2a2f ^








577281f6 ^
16db2a2f ^

c2a74205 ^
16db2a2f ^

665a4d70 ^

630433cd ^
665a4d70 ^
b396b7b4 ^
54ed56f2 ^
880b8e91 ^
b396b7b4 ^
54ed56f2 ^

7163541b ^
54ed56f2 ^



665a4d70 ^

880b8e91 ^

665a4d70 ^

880b8e91 ^

665a4d70 ^

880b8e91 ^

665a4d70 ^

880b8e91 ^

665a4d70 ^
f8831a02 ^
630433cd ^
16db2a2f ^








630433cd ^

f8831a02 ^

f8831a02 ^
f8831a02 ^


8950915a ^
c442a5ad ^
33ad0851 ^
e5998f74 ^
33ad0851 ^
c442a5ad ^
dadae338 ^
02684e8d ^
b359facb ^
a893d3b6 ^


f8831a02 ^


e307a807 ^
f8831a02 ^
a7b2a5de ^
f8831a02 ^


f2889b00 ^







f2889b00 ^




f2889b00 ^


f8831a02 ^

e307a807 ^
f8831a02 ^

e307a807 ^
f8831a02 ^
a7b2a5de ^
f8831a02 ^



a7b2a5de ^
f8831a02 ^


f8831a02 ^
a7b2a5de ^
f8831a02 ^



2af68cc8 ^
665a4d70 ^
f8831a02 ^

62c6d163 ^
e5998f74 ^
02684e8d ^
62c6d163 ^
e5998f74 ^

62c6d163 ^
8c1a6908 ^
c442a5ad ^
62c6d163 ^

62197fd5 ^

0f851e48 ^



62197fd5 ^



0f851e48 ^

62197fd5 ^




0f851e48 ^
3f4bbe9e ^
0f851e48 ^
3f4bbe9e ^
0f851e48 ^
3f4bbe9e ^
0f851e48 ^
3f4bbe9e ^
116e7730 ^

dc559a00 ^

62197fd5 ^




c442a5ad ^

















f8831a02 ^



a7b2a5de ^

edd2253b ^
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401