Brought to you by http://www.rasmurtech.com/
Rasim from Rasmurtech.com give us another tutorial on Assembly Language Programming . In this tutorial Rasim show us how to use simple input and output. He will show you how to make a program that lets you input a character and then print that character on the screen.
All references in this video came from:
Assembly Language for x86 Processors (6th Edition) http://goo.gl/n3ApG
Download:
emu8086: http://goo.gl/AXgw2u
Google Plus: https://plus.google.com/112317437942092121047
Twitter: https://twitter.com/rasmurtech
Facebook: https://www.facebook.com/Rasmurtech
Instagram: http://instagram.com/rasmurtech
Amazon Auto Links: No products found.
Why the name of the video is tutorial LOL.
STRIKE THAT! I figured it out! The character is stored in AL and I was putting AH in the variable instead.
.model small
.data
.code
higher:
mov ah,1h
int 21h
inc al
mov dl,al
loop higher
mov ah,02h
int 21h
end
This particular piece of code is taking multiple inputs but not giving output and when I pressed enter after inputting data cursor get back to the very first data byte that I have entered and when I tried to move to right data was gone and got message as emu halted.what is error in it?
if i see int 21h i feel fuck you linux only win!. omg i cant find tutorial with nasm and x86 in linux assembly without C.
can u plz explain why did u use .model small and in the previous video u used .model tiny?? and the book which was recommended by u explain these things in a different way like they use a header file for the operation and some more dissimilarities are there..can u plz explain why is it so..
Thanks
I made a loop using jmp, it is really amusing seeing it spam strangely
sir i want to get values by user to enter user name and password and if its true then show a message welcome and if is not then show an error message so what can i do for this in assembly language ??? Please make a video for this and send me the link for this tutorial thanks
I really dont get it why did you use al
how to print nums plz
Why on the previous video you used mov ah, 09h and say its the command to display on the screen and here its just INT 21h..?? What happen to the 09h which is the command to display on screen?
May I ask a question please? What IDE are you using in Assembly Language?
what is the different .model tiny from your previous and .model small ????
Can I store Interrupts in AL register? for example mov al,4ch instead of mov ah,4ch
what if we want to input a number not a digit?? how to input a digit ?? al only stores 8 bit memory ……..reply man!
HEY!! This is great! My question is how can you store this value? The number is imputed and immediately spit out. What if I want to use this number and do operations on it? Please let me know if you know how to do this.
Great video on this subject! If you keep it simple enough for me, I promise you I will learn a lot better and be wiser. I love this stuff.
If you got 2 inputs for values how do you add them?
Why do we use the register “ah” ?
When I run it, it freezes the emulator, it also warns me about something with the stack
My lecturer taught us to program in fasm but i love your videos. I think its more clear and so i was using your code in the fasm assembler and actually it works fine. Am i doing something wrong like the code that you wrote, i wrote the same code in fasm as follows:-
#fasm#
org 100h
mov ah,1h
int 21h
mov dl,al
mov ah,2h
int 21h
int 20h
i didn’t understand the code properly especially on line 11,14 and 16, u were too fast . Pls explain in detail like be more clear about it.
why does it save it in the al register