<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>inc instruction assembly Archives - NeuralLantern.com</title>
	<atom:link href="https://www.NeuralLantern.com/tag/inc-instruction-assembly/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.NeuralLantern.com/tag/inc-instruction-assembly/</link>
	<description></description>
	<lastBuildDate>Sun, 01 Feb 2026 02:49:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.NeuralLantern.com/wp-content/uploads/2025/04/cropped-2025-04-04-Lantern-03-32x32.png</url>
	<title>inc instruction assembly Archives - NeuralLantern.com</title>
	<link>https://www.NeuralLantern.com/tag/inc-instruction-assembly/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>x86-64 Assembly For Loops Explained &#8211; YASM Tutorial</title>
		<link>https://www.NeuralLantern.com/x86-64-assembly-for-loops-explained-yasm-tutorial/</link>
					<comments>https://www.NeuralLantern.com/x86-64-assembly-for-loops-explained-yasm-tutorial/#respond</comments>
		
		<dc:creator><![CDATA[mike]]></dc:creator>
		<pubDate>Sun, 01 Feb 2026 02:49:29 +0000</pubDate>
				<category><![CDATA[Assembly Language]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[asm tutorial 2025]]></category>
		<category><![CDATA[assembly for loop]]></category>
		<category><![CDATA[assembly language tutorial]]></category>
		<category><![CDATA[assembly while loop]]></category>
		<category><![CDATA[computer architecture]]></category>
		<category><![CDATA[conditional jump assembly]]></category>
		<category><![CDATA[implementing for loop in assembly]]></category>
		<category><![CDATA[inc instruction assembly]]></category>
		<category><![CDATA[learning assembly language]]></category>
		<category><![CDATA[loop in assembly]]></category>
		<category><![CDATA[low level programming]]></category>
		<category><![CDATA[NASM vs YASM]]></category>
		<category><![CDATA[reverse engineering basics]]></category>
		<category><![CDATA[systems programming]]></category>
		<category><![CDATA[x86 assembly loops]]></category>
		<category><![CDATA[x86-64 assembly]]></category>
		<category><![CDATA[x86-64 linux assembly]]></category>
		<category><![CDATA[Yasm tutorial]]></category>
		<category><![CDATA[yasm x86-64]]></category>
		<guid isPermaLink="false">https://www.NeuralLantern.com/?p=295</guid>

					<description><![CDATA[<p>This tutorial explains how to implement a C-style for loop in x86-64 assembly using YASM by converting it to while-loop logic with initialization, conditional jump (jl), increment (inc), and unconditional jump back to the loop top. Demonstrates register usage (r12/r13), loop structure, and printing numbers inside the body.</p>
<p>The post <a href="https://www.NeuralLantern.com/x86-64-assembly-for-loops-explained-yasm-tutorial/">x86-64 Assembly For Loops Explained &#8211; YASM Tutorial</a> appeared first on <a href="https://www.NeuralLantern.com">NeuralLantern.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="x86-64 Assembly For Loops Explained - YASM Tutorial" width="1380" height="776" src="https://www.youtube.com/embed/pftzv5lIPso?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<p class="wp-block-paragraph">Quick practical guide showing how to implement a classic for loop (i=0; i&lt;n; i++) in x86-64 assembly with YASM. We break the for loop into init/check/update parts, convert it to while-style logic, then build it with compares, conditional jumps, inc, and unconditional jumps back to the top. Includes real working code, user input, and printed output.</p>



<p class="wp-block-paragraph">Great for students learning assembly after C/C++, OSdev hobbyists, or reverse engineering beginners.</p>



<p class="wp-block-paragraph">Introduction to For Loops in Assembly 00:00:00<br>For Loop Structure in High-Level Languages 00:00:28<br>Breaking Down For Loop Parts: Init, Check, Update 00:01:04<br>Converting For Loop to While Loop 00:01:52<br>Why While Loop Style Helps in Assembly 00:03:16<br>Program Overview and Setup 00:04:12<br>Data Section &#8211; Strings and Messages 00:04:40<br>External Functions and Hybrid Program 00:06:11<br>Entry Point &#8211; Looper Function 00:07:12<br>For Test Function and Register Usage 00:07:42<br>Preserving Callee-Saved Registers 00:08:05<br>Printing Welcome Message 00:09:00<br>Prompting User for Number 00:09:48<br>Getting User Input 00:10:25<br>For Loop Structure in Assembly &#8211; Comments 00:11:12<br>Initialization &#8211; Setting Counter to Zero 00:12:50<br>Loop Top Label and Condition Check 00:14:28<br>Conditional Jump Setup (jl) 00:15:07<br>Handling Jump Distances 00:15:34<br>Loop Body &#8211; Printing Current Number 00:16:58<br>Update Part &#8211; Increment Counter 00:18:40<br>Unconditional Jump Back to Loop Top 00:19:14<br>Loop Done Label and Exit 00:19:55<br>Printing Goodbye Message 00:20:23<br>Testing the Program 00:22:08<br>Final Results and Demo 00:22:24<br>Outro and Call to Action 00:23:25<br>Thanks and Subscribe Request 00:23:45<br>Website and QR Code Mention 00:24:38<br>Closing Thanks 00:25:16</p>



<p class="wp-block-paragraph">=-=-=-=-=-=-=-=-=</p>



<p class="wp-block-paragraph">Thanks for watching!</p>



<p class="wp-block-paragraph">Find us on other social media here:</p>



<ul class="wp-block-list">
<li>https://www.NeuralLantern.com/social</li>



<li>Twitter / X: https://x.com/NeuralLantern</li>



<li>Rumble: https://rumble.com/c/c-3696939</li>



<li>BitChute: https://www.bitchute.com/channel/pg1Pvv5dN4Gt</li>



<li>Daily Motion: https://www.dailymotion.com/neurallantern</li>



<li>Minds: https://www.minds.com/neurallantern/</li>



<li>Odysee: https://odysee.com/@NeuralLantern:5</li>
</ul>



<p class="wp-block-paragraph">Please show your support!</p>



<ul class="wp-block-list">
<li>Buy me a coffee: https://ko-fi.com/neurallantern</li>



<li>Subscribe + Sharing on Social Media</li>



<li>Leave a comment or suggestion</li>



<li>Subscribe to Blog: https://www.NeuralLantern.com</li>



<li>Watching the main &#8220;pinned&#8221; video of this channel for offers and extras</li>
</ul>



<p class="wp-block-paragraph">Hey there! In this video I&#8217;m going to teach you how to implement for loops in YASM x86-64 assembly.</p>



<p class="wp-block-paragraph">Although if you&#8217;re using a different type of machine or a different assembler,</p>



<p class="wp-block-paragraph">this video should still be useful to you because it&#8217;s mostly about the concepts involved in implementing a for loop.</p>



<p class="wp-block-paragraph">Okay, so for starters here, what am I even talking about? Let&#8217;s do…</p>



<p class="wp-block-paragraph">are you even talking about dude imagine in a higher level language we have a for loop here</p>



<p class="wp-block-paragraph">and so we have like four size type i equals zero i is less than 99 i plus plus right probably most</p>



<p class="wp-block-paragraph">programmers looking up assembly uh on the internet probably are interested in uh or probably already</p>



<p class="wp-block-paragraph">know how to implement for loops in c plus plus so let&#8217;s just pretend that you do and so inside of</p>



<p class="wp-block-paragraph">your for loop we&#8217;ll do stuff and what happens here is uh well you know this for loop is going to run</p>



<p class="wp-block-paragraph">Well, you know, this for loop is going to run 99 times.</p>



<p class="wp-block-paragraph">It&#8217;s going to start at zero.</p>



<p class="wp-block-paragraph">And, you know, so we have like an initialization part right here.</p>



<p class="wp-block-paragraph">Maybe I should copy paste this and kind of break down the parts.</p>



<p class="wp-block-paragraph">We have an init part here for the for loop.</p>



<p class="wp-block-paragraph">We&#8217;ll say init part.</p>



<p class="wp-block-paragraph">And then here we have a check part.</p>



<p class="wp-block-paragraph">We&#8217;ll continue to loop as long as this expression is true.</p>



<p class="wp-block-paragraph">You can make a big complicated expression if you want to,</p>



<p class="wp-block-paragraph">but we&#8217;ll just keep it simple for this video.</p>



<p class="wp-block-paragraph">So I&#8217;ll call this the check part.</p>



<p class="wp-block-paragraph">And then we have sort of an update or a maintenance part.</p>



<p class="wp-block-paragraph">an update or a maintenance part. So I&#8217;m going to call this the update part where we increment our</p>



<p class="wp-block-paragraph">counter variable, move pointers, even call functions, do whatever it is you think you need</p>



<p class="wp-block-paragraph">to do to update the loop so that it runs it, you know, so that the loops don&#8217;t actually have to be</p>



<p class="wp-block-paragraph">integers. But in this case, I think it&#8217;s better, it&#8217;s easier to understand what the loop is doing</p>



<p class="wp-block-paragraph">if we just kind of break down these parts. Anyway, so what is really a while loop? Sorry,</p>



<p class="wp-block-paragraph">but a while loop that breaks and has break has like a nit logic and breaking logic and checking logic just in specific places.</p>



<p class="wp-block-paragraph">Imagine this. What if I said before the loop starts, I&#8217;ll let&#8217;s let&#8217;s say we&#8217;re going to do a while loop before the loop starts.</p>



<p class="wp-block-paragraph">I&#8217;m going to initialize a variable size type I equals zero, right?</p>



<p class="wp-block-paragraph">That&#8217;s the initialization part that&#8217;ll only happen one time.</p>



<p class="wp-block-paragraph">And then when you have a while loop and it checks to see if it should keep going, that&#8217;s</p>



<p class="wp-block-paragraph">the check part of the for loop.</p>



<p class="wp-block-paragraph">So I&#8217;ll just say while i is less than 99.</p>



<p class="wp-block-paragraph">And then for the update part, we just have to stick that inside of the while loop somewhere.</p>



<p class="wp-block-paragraph">Depending on your logic, you might want to put it at the top or the middle or the bottom.</p>



<p class="wp-block-paragraph">I&#8217;m going to put it at the bottom because I&#8217;m going to expect that it happens right</p>



<p class="wp-block-paragraph">before we do the next check.</p>



<p class="wp-block-paragraph">So I&#8217;m going to maybe do a comment here and call it the update part and I&#8217;m just going</p>



<p class="wp-block-paragraph">So maybe if I update this code to print something, it&#8217;ll seem a little bit more clear.</p>



<p class="wp-block-paragraph">Value of I is, and then I&#8217;ll just say I end L, and then I&#8217;ll copy paste that to here.</p>



<p class="wp-block-paragraph">And then I can also put this inside of the while loop.</p>



<p class="wp-block-paragraph">And now we have transformed our for loop into a while loop.</p>



<p class="wp-block-paragraph">transform your for loop into a while loop it&#8217;s pretty easy to implement in assembly if you</p>



<p class="wp-block-paragraph">already know how to implement while loops so i should again say that there are lots of parts</p>



<p class="wp-block-paragraph">i don&#8217;t know if i said that during this video but there are lots of things in this video that i&#8217;m</p>



<p class="wp-block-paragraph">not going to that i&#8217;m not going to explain specifically because i&#8217;ve already explained</p>



<p class="wp-block-paragraph">them in other videos so for example implementing a while loop is in another video so if you don&#8217;t</p>



<p class="wp-block-paragraph">already know how to implement while loops if you don&#8217;t know how to use conditional branching or</p>



<p class="wp-block-paragraph">If you don&#8217;t know the basics of assembly, hybrid programs, make files, all the basic stuff that I&#8217;m going to skim over in this video,</p>



<p class="wp-block-paragraph">then you should probably check out my other videos first.</p>



<p class="wp-block-paragraph">But for now, I&#8217;m just going to assume that you know how to implement a while loop.</p>



<p class="wp-block-paragraph">And really the lesson is, hey, just take your for loop and convert it into a while loop.</p>



<p class="wp-block-paragraph">And then you can implement the while loop pretty easily.</p>



<p class="wp-block-paragraph">That&#8217;s the secret as far as I&#8217;m concerned.</p>



<p class="wp-block-paragraph">So imagine this now. Let&#8217;s do some assembly code.</p>



<p class="wp-block-paragraph">I have a source code file here called looper.asm for assembly.</p>



<p class="wp-block-paragraph">And you can imagine that I have a hybrid program running under the hood.</p>



<p class="wp-block-paragraph">I&#8217;m not going to show you all the code involved.</p>



<p class="wp-block-paragraph">I&#8217;m not going to show you the make file or the C++ driver that calls on this module.</p>



<p class="wp-block-paragraph">We&#8217;re just going to write the assembly here.</p>



<p class="wp-block-paragraph">So, you know, if you&#8217;re writing pure assembly at home to practice, that&#8217;s fine.</p>



<p class="wp-block-paragraph">Just keep in mind, there&#8217;s like a few things under the hood that I&#8217;m not showing in this specific video.</p>



<p class="wp-block-paragraph">So first off, I&#8217;m going to copy paste my data section.</p>



<p class="wp-block-paragraph">paste my data section of my assembly program. The first thing to note is we have a bunch of</p>



<p class="wp-block-paragraph">C strings here. We&#8217;re basically going to be telling the user, hey, we&#8217;re going to begin</p>



<p class="wp-block-paragraph">the four tests. Maybe I should have capitalized for, I&#8217;ll leave it. And then we&#8217;re going to prompt</p>



<p class="wp-block-paragraph">the user for a number. We&#8217;re going to say, please enter a number. The loop will print from zero to</p>



<p class="wp-block-paragraph">the number minus one, which is like the typical four loop that you usually write in the most</p>



<p class="wp-block-paragraph">and then we&#8217;re going to have a little prefix we&#8217;re going to say you know like an arrow and then we&#8217;re</p>



<p class="wp-block-paragraph">going to print the number back to the user that we&#8217;re looping through so if the user enters a</p>



<p class="wp-block-paragraph">10 it&#8217;s going to print the arrow 0 and then arrow 1 arrow 2 all the way up to arrow 9</p>



<p class="wp-block-paragraph">and then when we&#8217;re done we&#8217;re going to print an ending message so this is nothing new if you know</p>



<p class="wp-block-paragraph">assembly already just c strings that will print with system calls see my other videos if you don&#8217;t</p>



<p class="wp-block-paragraph">And then a CRLF string, just basically doing a new line, a carriage return new line feed</p>



<p class="wp-block-paragraph">on the system.</p>



<p class="wp-block-paragraph">And then we&#8217;re going to output using system call code one.</p>



<p class="wp-block-paragraph">And we&#8217;re going to use file descriptor one so we can print to standard output.</p>



<p class="wp-block-paragraph">Okay.</p>



<p class="wp-block-paragraph">So now the real fun begins.</p>



<p class="wp-block-paragraph">Let&#8217;s start our text section, which is where the instructions of our assembly program go.</p>



<p class="wp-block-paragraph">So I&#8217;m going to do text section, section text right there.</p>



<p class="wp-block-paragraph">And I&#8217;m going to use two external functions to just help me input and output numbers to the user.</p>



<p class="wp-block-paragraph">If you wanted to, you could use a system call that just inputted a character.</p>



<p class="wp-block-paragraph">And then you could just kind of like loop printing various characters.</p>



<p class="wp-block-paragraph">And like, let&#8217;s say if the user typed A, maybe you could imagine doing a loop that increases the character that they typed all the way until it hits Z.</p>



<p class="wp-block-paragraph">Or if they hit, you know, F, it&#8217;ll just print F all the way to Z.</p>



<p class="wp-block-paragraph">to z you could do that without using an external library for printing integers this video is not</p>



<p class="wp-block-paragraph">about this library right here so i&#8217;m not really going to go over it but uh you know you could</p>



<p class="wp-block-paragraph">hard code the start and end points when you&#8217;re practicing um you could you could use a different</p>



<p class="wp-block-paragraph">library or a different function call to get the inputs you could use a system call just to input</p>



<p class="wp-block-paragraph">one character um or you could you know use a hybrid program to to utilize printf and scanf</p>



<p class="wp-block-paragraph">f. Either way I&#8217;m just going to be using these two functions just to like get input and output.</p>



<p class="wp-block-paragraph">It&#8217;s not really part of the idea of looping. So now let&#8217;s start our entry point.</p>



<p class="wp-block-paragraph">Our function is called looper. Since this is a hybrid program you can imagine there&#8217;s a C++</p>



<p class="wp-block-paragraph">module elsewhere calling on the looper function and so that&#8217;s why I mark it as global so it can</p>



<p class="wp-block-paragraph">be called upon. And then I have another function called for test. I don&#8217;t really know why I chose</p>



<p class="wp-block-paragraph">it this way but i wanted to make another function that was called upon by our entry point here</p>



<p class="wp-block-paragraph">so the looper function really doesn&#8217;t do anything except recall the for test function</p>



<p class="wp-block-paragraph">so now let&#8217;s start the for test function actually maybe this is where the fun begins</p>



<p class="wp-block-paragraph">so i&#8217;m gonna put it down here and so you can see the signature it doesn&#8217;t take any arguments it</p>



<p class="wp-block-paragraph">doesn&#8217;t return anything it just does stuff and then i have a note to myself this is how we&#8217;re</p>



<p class="wp-block-paragraph">going to use the registers we&#8217;re going to use r12 for the user&#8217;s number and then we&#8217;re going to use</p>



<p class="wp-block-paragraph">And then we&#8217;re going to use R13 to keep track of where we&#8217;re going.</p>



<p class="wp-block-paragraph">So let&#8217;s see.</p>



<p class="wp-block-paragraph">I&#8217;m going to start by saying let&#8217;s preserve R12 and R13</p>



<p class="wp-block-paragraph">because you have to respect the application binary interface, the ABI,</p>



<p class="wp-block-paragraph">and that designates R12 and R13 as Kali saved registers.</p>



<p class="wp-block-paragraph">If I don&#8217;t preserve those and my program is even a little bit complicated,</p>



<p class="wp-block-paragraph">I&#8217;m probably going to be debugging forever</p>



<p class="wp-block-paragraph">debugging forever or I&#8217;m going to just crash my program for no reason. So I&#8217;m going to just</p>



<p class="wp-block-paragraph">do a push pop pair. Notice how the pops are in reverse order. This is not a push pop video,</p>



<p class="wp-block-paragraph">but just so you know, I guess while I&#8217;m here, I&#8217;m going to copy paste my crlf function,</p>



<p class="wp-block-paragraph">which really does nothing. It just prints out the crlf string with a system call. That&#8217;s all</p>



<p class="wp-block-paragraph">Okay, so do I even need CRLF in this program?</p>



<p class="wp-block-paragraph">I think I just modified this.</p>



<p class="wp-block-paragraph">Maybe I don&#8217;t even need it anymore.</p>



<p class="wp-block-paragraph">No, I guess I do.</p>



<p class="wp-block-paragraph">The first thing we&#8217;ll do is we&#8217;ll print an introduction message to the user.</p>



<p class="wp-block-paragraph">So inside of the for test, we&#8217;ll just use a system call to print out, you know, a welcome</p>



<p class="wp-block-paragraph">message to the user.</p>



<p class="wp-block-paragraph">And then I&#8217;m going to call CRLF, which will just give us a new line.</p>



<p class="wp-block-paragraph">And yeah, you can hard code, you know, the 13, 10 at the end of these strings, but I</p>



<p class="wp-block-paragraph">don&#8217;t really like doing that.</p>



<p class="wp-block-paragraph">doing that. Okay, so we should have a working program at this point. Let me see if it actually</p>



<p class="wp-block-paragraph">does work. Clear and make run. Okay, so the driver prints a little welcome message. You don&#8217;t see the</p>



<p class="wp-block-paragraph">driver code, but that&#8217;s what it&#8217;s doing. And then the for test prints the welcome message that we</p>



<p class="wp-block-paragraph">just added. And then the driver lets us know it&#8217;s retained control. And then it&#8217;s responsible for</p>



<p class="wp-block-paragraph">returning to the operating system for us. Okay, so then the next thing we&#8217;re going to do is we&#8217;re</p>



<p class="wp-block-paragraph">we&#8217;re going to ask the user for a number so that we know how many times to loop.</p>



<p class="wp-block-paragraph">And again, you could hard code this number if you don&#8217;t want to do IO right now.</p>



<p class="wp-block-paragraph">You could even print a character a certain number of times</p>



<p class="wp-block-paragraph">if you don&#8217;t want to even deal with printing an integer.</p>



<p class="wp-block-paragraph">But I&#8217;m going to ask the user for a number.</p>



<p class="wp-block-paragraph">That&#8217;s going to be the prompt string.</p>



<p class="wp-block-paragraph">And if we run it again, now you should see it asks the user for a number.</p>



<p class="wp-block-paragraph">So it&#8217;s going to say, please enter a number.</p>



<p class="wp-block-paragraph">The loop will print from zero to N minus one.</p>



<p class="wp-block-paragraph">print from 0 to n minus 1. It doesn&#8217;t actually ask for the number though. It doesn&#8217;t actually</p>



<p class="wp-block-paragraph">I guess take the number so that&#8217;s going to be my external library that this video is not about</p>



<p class="wp-block-paragraph">where I just call a function called input assigned 64 integer and I&#8217;m going to receive that back in</p>



<p class="wp-block-paragraph">rax and I&#8217;m just going to save rax into r12. So r12 is now going to be the number that the user</p>



<p class="wp-block-paragraph">inputted and that&#8217;s why up here I have it designated as the user&#8217;s number. So really not a big deal but</p>



<p class="wp-block-paragraph">a big deal but uh you know if we run it again it&#8217;ll ask for a number and then it won&#8217;t do</p>



<p class="wp-block-paragraph">anything else it&#8217;ll just kind of quit okay so now we can implement our for loop this is going to be</p>



<p class="wp-block-paragraph">a little tricky so we&#8217;re going to start off with the initialization part remember we had several</p>



<p class="wp-block-paragraph">parts here if i just kind of drag this off to the side maybe pin it up to the top so we can see it</p>



<p class="wp-block-paragraph">aren&#8217;t we? If I move it a little bit to the side. So remember that for loop, it&#8217;s got an init part</p>



<p class="wp-block-paragraph">and a check part and an update part. And I&#8217;ve kind of added that as a comment just to remind myself</p>



<p class="wp-block-paragraph">of the way my mind is supposed to be wrapped around this concept. And so I made another comment</p>



<p class="wp-block-paragraph">here with four and then empty parentheses just to denote that some comments that come below</p>



<p class="wp-block-paragraph">I guess the top of the for loop</p>



<p class="wp-block-paragraph">So now I&#8217;m going to make a label here and what I like to do with my labels is I like to</p>



<p class="wp-block-paragraph">prefix them with the name of the function that I&#8217;m currently in and then an underscore and that kind of helps me keep track of</p>



<p class="wp-block-paragraph">My symbols a little bit more easily, especially if I have a large module the symbols are less likely to overlap if I prefix them with the</p>



<p class="wp-block-paragraph">The function names</p>



<p class="wp-block-paragraph">to be Fortest underscore something and since I&#8217;m only doing one thing inside of the Fortest function</p>



<p class="wp-block-paragraph">I&#8217;m just going to have a suffix only for the most part but you can imagine if you had more</p>



<p class="wp-block-paragraph">parts inside of your function and it started getting a little cluttered you might want to have</p>



<p class="wp-block-paragraph">you know another label you know that just sort of another I guess like part to your label that names</p>



<p class="wp-block-paragraph">the part of your function you&#8217;re in although this is assembly it gets really hard really fast so</p>



<p class="wp-block-paragraph">really hard really fast so if your function is even a little bit complicated you should probably</p>



<p class="wp-block-paragraph">consider breaking it up into multiple functions if you can. We can&#8217;t really do that at this point</p>



<p class="wp-block-paragraph">because it&#8217;s just a for loop but keep that in mind. Okay so we&#8217;re going to initialize. Remember</p>



<p class="wp-block-paragraph">the first thing we had to do to initialize was you know setting i to zero or you know whatever</p>



<p class="wp-block-paragraph">it is that we&#8217;re going to set up in the init part so I&#8217;m just going to do that here. I&#8217;m going to say</p>



<p class="wp-block-paragraph">That&#8217;s the first part, the update part where we set size type i equals zero.</p>



<p class="wp-block-paragraph">In fact, maybe I could do another copy paste of this.</p>



<p class="wp-block-paragraph">Where instead of using a size type, we&#8217;ll just say that the register r13 equals zero.</p>



<p class="wp-block-paragraph">I know that&#8217;s not going to make sense in a higher level language right now,</p>



<p class="wp-block-paragraph">but just so that the for loop looks a little bit more like assembly.</p>



<p class="wp-block-paragraph">We&#8217;ll keep going as long as r13 is less than r12.</p>



<p class="wp-block-paragraph">and then we increase R13.</p>



<p class="wp-block-paragraph">So I&#8217;m just going to put ink R13</p>



<p class="wp-block-paragraph">so it looks more assembly-like,</p>



<p class="wp-block-paragraph">even though this completely and totally</p>



<p class="wp-block-paragraph">would not compile in C++.</p>



<p class="wp-block-paragraph">I hope that this helps your understanding a little bit.</p>



<p class="wp-block-paragraph">So yeah, we can do everything</p>



<p class="wp-block-paragraph">except for just the increase part at the very top.</p>



<p class="wp-block-paragraph">I&#8217;m going to choose to increase it at the bottom.</p>



<p class="wp-block-paragraph">If you wanted to, I guess you could start off R13</p>



<p class="wp-block-paragraph">as a negative number and then increase it at the top.</p>



<p class="wp-block-paragraph">But I personally don&#8217;t feel that&#8217;s like very clean.</p>



<p class="wp-block-paragraph">feel that&#8217;s like very clean it also forces you to use signed integers maybe you wanted to use an</p>



<p class="wp-block-paragraph">unsigned integer so you could get like a gigantic um maximum number that you looped up to i don&#8217;t</p>



<p class="wp-block-paragraph">know so we&#8217;ll just initialize here and we&#8217;ll say r13 is equal to zero the init part should not be</p>



<p class="wp-block-paragraph">part of the actual like looping like every time you loop up to the top of the for loop you should</p>



<p class="wp-block-paragraph">not repeat that part again it should only happen once so the next label that i have is called loop</p>



<p class="wp-block-paragraph">have is called loop top and that&#8217;s just going to be the top of the loop that I</p>



<p class="wp-block-paragraph">continue to go back up to every time I want to see if we&#8217;re supposed to</p>



<p class="wp-block-paragraph">continue looping and then go into the loops body so maybe I should say that&#8217;s</p>



<p class="wp-block-paragraph">why this is named to underscore loop top and I don&#8217;t know you don&#8217;t have to do</p>



<p class="wp-block-paragraph">camel casing and your labels you know you could just do loop in it or whatever</p>



<p class="wp-block-paragraph">but I&#8217;m just choosing to do it this way so at the top of our loop we&#8217;ll be</p>



<p class="wp-block-paragraph">Remember that was the check part, right?</p>



<p class="wp-block-paragraph">So we&#8217;re going to check to see that R13 is still less than R12.</p>



<p class="wp-block-paragraph">If it is, we&#8217;ll continue with the for loop.</p>



<p class="wp-block-paragraph">If it&#8217;s not, then we jump out of the for loop.</p>



<p class="wp-block-paragraph">So that means probably the true case where R13 is indeed less than R12,</p>



<p class="wp-block-paragraph">that&#8217;s going to be a short jump just into the loop&#8217;s body.</p>



<p class="wp-block-paragraph">And the false case where R13 is not less than R12,</p>



<p class="wp-block-paragraph">that should probably end up being a much longer jump.</p>



<p class="wp-block-paragraph">on how big your your loop is maybe that jump is too long too far away for a conditional branching</p>



<p class="wp-block-paragraph">instruction to reach if you&#8217;ve watched my previous videos you should know already that</p>



<p class="wp-block-paragraph">the conditional branching instructions like jl like jump less than they can only reach about 128</p>



<p class="wp-block-paragraph">bytes away if you try to go further than that the assembler will actually stop and block you from</p>



<p class="wp-block-paragraph">finishing your compilation it&#8217;ll say i think it&#8217;s like jump out of range or something like that</p>



<p class="wp-block-paragraph">So you want to try to keep the short jump points with your conditional branches.</p>



<p class="wp-block-paragraph">And then in the false case, where the conditional branch doesn&#8217;t actually do anything,</p>



<p class="wp-block-paragraph">then it falls through to the next instruction where you will have an unconditional jump.</p>



<p class="wp-block-paragraph">And remember, the unconditional jumps, they don&#8217;t have a limitation of 128 bytes.</p>



<p class="wp-block-paragraph">They can jump like all over the place.</p>



<p class="wp-block-paragraph">Like they can jump anywhere, basically.</p>



<p class="wp-block-paragraph">that means if you think about it, we come in to the loop top right here.</p>



<p class="wp-block-paragraph">We immediately do a compare instruction and a conditional branch.</p>



<p class="wp-block-paragraph">So if R13 is less than R12, meaning we should continue to for loop,</p>



<p class="wp-block-paragraph">then we&#8217;ll just do a short jump into the loop&#8217;s body and actually execute its body.</p>



<p class="wp-block-paragraph">And if not, we will end up falling through to line 92,</p>



<p class="wp-block-paragraph">where there&#8217;s just an unconditional jump instruction that just says,</p>



<p class="wp-block-paragraph">all right, let&#8217;s jump all the way down to being done.</p>



<p class="wp-block-paragraph">Let&#8217;s jump all the way down to being done, which could be very far away for all we know.</p>



<p class="wp-block-paragraph">Okay, so we&#8217;ve done that.</p>



<p class="wp-block-paragraph">Now let&#8217;s implement the loops body because the first thing that we did is we wanted to</p>



<p class="wp-block-paragraph">jump into the loop body to actually execute our instructions, which in this case, we&#8217;ll</p>



<p class="wp-block-paragraph">just be, you know, printing a number every time we loop and then increasing that number.</p>



<p class="wp-block-paragraph">So I&#8217;m going to do a little like new line there.</p>



<p class="wp-block-paragraph">I&#8217;m going to paste the loop body.</p>



<p class="wp-block-paragraph">little comments to help remind myself that this is actually the loop&#8217;s body. So for test loop body</p>



<p class="wp-block-paragraph">that takes care of the branching instruction, hitting on that and actually going into the body.</p>



<p class="wp-block-paragraph">And then later we&#8217;re going to have to implement a label for the loop being done. But for now,</p>



<p class="wp-block-paragraph">we&#8217;ll just say the body. What does it do? It just prints a little message to the user.</p>



<p class="wp-block-paragraph">If you look at the message for current number string, if I go up real fast,</p>



<p class="wp-block-paragraph">message for current number, it&#8217;s just an arrow. So the user&#8217;s going to see an arrow and then</p>



<p class="wp-block-paragraph">So the user is going to see an arrow and then their current number, I guess of the loop&#8217;s</p>



<p class="wp-block-paragraph">current number.</p>



<p class="wp-block-paragraph">And then every time it loops, it&#8217;s just going to continue printing that arrow with a number</p>



<p class="wp-block-paragraph">on it.</p>



<p class="wp-block-paragraph">So we&#8217;re doing that.</p>



<p class="wp-block-paragraph">And then we&#8217;re going to say R13, which is the current counter variable, which started</p>



<p class="wp-block-paragraph">at zero is going to get loaded into RDI, which if you watched my other videos, it&#8217;s just</p>



<p class="wp-block-paragraph">the first integer argument for a function call.</p>



<p class="wp-block-paragraph">So I&#8217;m just going to call this other function here, which is not part of the video to just</p>



<p class="wp-block-paragraph">which is not part of the video to just say hey please print this number for me so the first</p>



<p class="wp-block-paragraph">time this iterates it&#8217;s going to print zero because it&#8217;s going to print r13 and then it&#8217;s</p>



<p class="wp-block-paragraph">going to print a new line so that the cursor goes to the next you know line of the terminal</p>



<p class="wp-block-paragraph">so that&#8217;s all the body does it just kind of like prints the current number with an arrow and does</p>



<p class="wp-block-paragraph">a new line and then at the very bottom of the loop body we just sort of maintain the for loop this is</p>



<p class="wp-block-paragraph">for loop this is going to be the update part so like let&#8217;s see maybe scooch this up a little bit</p>



<p class="wp-block-paragraph">the update part where we have let&#8217;s see on the very right side of the for loop which is like i</p>



<p class="wp-block-paragraph">plus plus or in more assembly speak increasing the counter variable so i&#8217;m just going to increase r13</p>



<p class="wp-block-paragraph">and then that way the loop can progress you know we&#8217;re always looking at r13</p>



<p class="wp-block-paragraph">to decide if we need to stop or not you know we&#8217;re comparing r13 to r12</p>



<p class="wp-block-paragraph">So we&#8217;re just increasing at the very bottom of the loop and then we unconditionally jump back up to the top.</p>



<p class="wp-block-paragraph">Probably a better idea to unconditionally jump back up to the top because maybe the jump to the top is very very far and if it&#8217;s greater than 128 bytes it won&#8217;t work.</p>



<p class="wp-block-paragraph">So the regular jump instruction doesn&#8217;t have that limitation. So now we&#8217;re jumping up to the loop top.</p>



<p class="wp-block-paragraph">So you can imagine now that you know we&#8217;re not going to the initialization part. That would be bad.</p>



<p class="wp-block-paragraph">We&#8217;re just jumping up to the top here where we immediately ask you know are we done?</p>



<p class="wp-block-paragraph">If we&#8217;re not done, we jump into the loop body and print another number.</p>



<p class="wp-block-paragraph">And then at the very bottom of the body, we say, all right, increase the counter and then jump back up to the top.</p>



<p class="wp-block-paragraph">So this is a simple for loop, but you can see what it&#8217;s doing, right?</p>



<p class="wp-block-paragraph">It&#8217;s just going to be printing a number over and over again as the number increases.</p>



<p class="wp-block-paragraph">And then eventually it&#8217;ll stop when it hits the correct number.</p>



<p class="wp-block-paragraph">The last thing we need is the loop done label.</p>



<p class="wp-block-paragraph">If you look back up at the top here on line 92, if R13 was not less than R12,</p>



<p class="wp-block-paragraph">less than r12 then execution would fall through to line 92 and there is our unconditional jump</p>



<p class="wp-block-paragraph">instruction basically saying if r13 is not less than r12 then we&#8217;ll jump to the loop done label</p>



<p class="wp-block-paragraph">which means we&#8217;re just totally finished with this loop so we have to make that real fast</p>



<p class="wp-block-paragraph">and all it&#8217;s going to do is just basically say goodbye it&#8217;s just going to print a message to</p>



<p class="wp-block-paragraph">to the restoration functions.</p>



<p class="wp-block-paragraph">Oh, did I ruin my return somewhere?</p>



<p class="wp-block-paragraph">Uh-oh, what did I do wrong?</p>



<p class="wp-block-paragraph">I lost my return statement.</p>



<p class="wp-block-paragraph">Did I accidentally delete that somehow?</p>



<p class="wp-block-paragraph">That&#8217;s a bad program.</p>



<p class="wp-block-paragraph">Or did I not even…</p>



<p class="wp-block-paragraph">Hmm, I wonder if it like…</p>



<p class="wp-block-paragraph">I wonder if I didn&#8217;t have my return statement</p>



<p class="wp-block-paragraph">and it fell through into the CRLF function</p>



<p class="wp-block-paragraph">and then the CRLF function returned to the caller</p>



<p class="wp-block-paragraph">to the caller on behalf of the for test function I don&#8217;t even know only all only</p>



<p class="wp-block-paragraph">the spirits know at this point I don&#8217;t know leave a comment or something if</p>



<p class="wp-block-paragraph">you know what happened but every function has to have its own return for</p>



<p class="wp-block-paragraph">sure so you know the loop done label is usually where you want to jump to when</p>



<p class="wp-block-paragraph">you know the for loop is finished or the while loop is finished when it comes to</p>



<p class="wp-block-paragraph">saying goodbye it probably would be a little bit more clear of me to add an</p>



<p class="wp-block-paragraph">you know for test you know say goodbye just so that I that I remember that this</p>



<p class="wp-block-paragraph">is this is the place where we&#8217;re done and this other place this is just</p>



<p class="wp-block-paragraph">something else that&#8217;s happening maybe I&#8217;m doing more instructions or more</p>



<p class="wp-block-paragraph">operations or calling a function or whatever so obviously if I did it this</p>



<p class="wp-block-paragraph">way then the loop done label would just end up falling through to the goodbye</p>



<p class="wp-block-paragraph">label and it would be fine but it&#8217;s just more visually clear I&#8217;m gonna take it</p>



<p class="wp-block-paragraph">Anyway, so at this point we might have a program that actually works.</p>



<p class="wp-block-paragraph">Let&#8217;s see if it does.</p>



<p class="wp-block-paragraph">What else do I need to add?</p>



<p class="wp-block-paragraph">No, I think we&#8217;re done with that.</p>



<p class="wp-block-paragraph">Okay, let&#8217;s try it.</p>



<p class="wp-block-paragraph">So we&#8217;ll do a make run and we&#8217;ll enter the number five and let&#8217;s see if it works or it</p>



<p class="wp-block-paragraph">crashes.</p>



<p class="wp-block-paragraph">It worked on the first try.</p>



<p class="wp-block-paragraph">So I had a solution though.</p>



<p class="wp-block-paragraph">Not fair, but I could have typoed.</p>



<p class="wp-block-paragraph">Anyway, so it says we entered a five, the loop will print from zero to N minus one.</p>



<p class="wp-block-paragraph">print from zero to n minus one so we should see from zero to four and so then every iteration of</p>



<p class="wp-block-paragraph">the loop it&#8217;s just that little message we&#8217;re just printing a zero printing one printing a two you</p>



<p class="wp-block-paragraph">know the number increases because we did did that little inc instruction the increase instruction</p>



<p class="wp-block-paragraph">we unconditionally jump to the top of the loop where we decide if we&#8217;re supposed to uh finish</p>



<p class="wp-block-paragraph">you know be done with the loop by jumping to the done label eventually after we uh let&#8217;s see</p>



<p class="wp-block-paragraph">it prints this four here it&#8217;ll do the increase instruction at the bottom of the loop&#8217;s body</p>



<p class="wp-block-paragraph">and then it&#8217;ll jump to the loop&#8217;s top then the loop&#8217;s top will see that it&#8217;s a five because we</p>



<p class="wp-block-paragraph">just increased the four it will see that five is definitely not less than five so that&#8217;s a false</p>



<p class="wp-block-paragraph">which means execution will you know fall through where the heck is that it&#8217;ll fall through to the</p>



<p class="wp-block-paragraph">line 92 jump instruction which is just the loop being done so that&#8217;s here where it says goodbye</p>



<p class="wp-block-paragraph">says goodbye and then we have successfully implemented a basic for loop</p>



<p class="wp-block-paragraph">all right so thank you so much for watching this video I hope you learned</p>



<p class="wp-block-paragraph">a little bit and had a little bit of fun I will see you in the next video happy</p>



<p class="wp-block-paragraph">coding and happy studying hey everybody thanks for watching this video again</p>



<p class="wp-block-paragraph">from the bottom of my heart I really appreciate it I do hope you did learn</p>



<p class="wp-block-paragraph">hope you did learn something and have some fun. If you could do me a please, a small little favor,</p>



<p class="wp-block-paragraph">could you please subscribe and follow this channel or these videos or whatever it is you do on the</p>



<p class="wp-block-paragraph">current social media website that you&#8217;re looking at right now. It would really mean the world to</p>



<p class="wp-block-paragraph">me and it&#8217;ll help make more videos and grow this community. So we&#8217;ll be able to do more videos,</p>



<p class="wp-block-paragraph">longer videos, better videos, or just I&#8217;ll be able to keep making videos in general. So please</p>



<p class="wp-block-paragraph">and subscribe. You know sometimes I&#8217;m sleeping in the middle of the night and I just wake up because</p>



<p class="wp-block-paragraph">I know somebody subscribed or followed. It just wakes me up and I get filled with joy. That&#8217;s</p>



<p class="wp-block-paragraph">exactly what happens every single time. So you could do it as a nice favor to me or you could</p>



<p class="wp-block-paragraph">you could troll me if you want to just wake me up in the middle of the night just subscribe</p>



<p class="wp-block-paragraph">and then I&#8217;ll just wake up. I promise that&#8217;s what will happen. Also if you look at the middle of the</p>



<p class="wp-block-paragraph">screen right now you should see a QR code which you can scan in order to go to the website which</p>



<p class="wp-block-paragraph">at the bottom of this video and it&#8217;ll take you to my main website where you can just kind of like</p>



<p class="wp-block-paragraph">see all the videos I published and the services and tutorials and things that I offer and all</p>



<p class="wp-block-paragraph">that good stuff and if you have a suggestion for clarifications or errata or just future videos</p>



<p class="wp-block-paragraph">that you want to see please leave a comment or if you just want to say hey what&#8217;s up what&#8217;s going on</p>



<p class="wp-block-paragraph">you know just send me a comment whatever I also wake up for those in the middle of the night I get</p>



<p class="wp-block-paragraph">I wake up in a cold sweat and I&#8217;m like,</p>



<p class="wp-block-paragraph">it would really mean the world to me.</p>



<p class="wp-block-paragraph">I would really appreciate it.</p>



<p class="wp-block-paragraph">So again, thank you so much for watching this video</p>



<p class="wp-block-paragraph">and enjoy the cool music as I fade into the darkness,</p>



<p class="wp-block-paragraph">which is coming for us all.</p>



<p class="wp-block-paragraph">Thank you.</p>
<p>The post <a href="https://www.NeuralLantern.com/x86-64-assembly-for-loops-explained-yasm-tutorial/">x86-64 Assembly For Loops Explained &#8211; YASM Tutorial</a> appeared first on <a href="https://www.NeuralLantern.com">NeuralLantern.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.NeuralLantern.com/x86-64-assembly-for-loops-explained-yasm-tutorial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
