Logo 
Search:

Assembly Language Articles

Submit Article
Home » Articles » Assembly Language » GeneralRSS Feeds

Program that prompts the user to enter a string, then stores it in a variable using instruction STOSB....

Posted By: Easy Tutor     Category: Assembly Language     Views: 4177

An AL Program that prompts the user to enter a string, then stores it in a variable using instruction STOSB.

Code for Program that prompts the user to enter a string, then stores it in a variable using instruction STOSB.... in Assembly Language

 .MODEL SMALL
 .STACK 100H

 .DATA
   PROMPT  DB  'Enter a string : $'

   STRING  DB  25 DUP(?)
 
 .CODE
   MAIN PROC
     MOV AX, @DATA                ; initialize DS, ES
     MOV DS, AX
     MOV ES, AX

     LEA DX, PROMPT               ; load and print the string PROMPT
     MOV AH, 9
     INT 21H

     CLD                          ; clear direction flag
     LEA DI, STRING               ; set DI=offset address of variable STRING
     XOR BX, BX                   ; clear BX

     @INPUT_LOOP:                 ; loop label
       MOV AH, 1                  ; set input function 
       INT 21H                    ; read a character

       CMP AL, 0DH                ; compare AL with CR
       JE @END_INPUT              ; jump to label @END_INPUT if AL=CR

       CMP AL, 08H                ; compare AL with 08H
       JNE @NOT_BACKSPACE         ; jump to label @NOT_BACKSPACE if AL!=08H

       CMP BX, 0                  ; compare BX with 0
       JE @INPUT_ERROR            ; jump to label @INPUT_ERROR if BX=0

       MOV AH, 2                  ; set output function
       MOV DL, 20H                ; set DL=20H
       INT 21H                    ; print a character

       MOV DL, 08H                ; set DL=08H
       INT 21H                    ; print a character

       DEC BX                     ; set BX=BX-1
       DEC DI                     ; set DI=DI-1
       JMP @INPUT_LOOP            ; jump to label @INPUT_LOOP

       @INPUT_ERROR:              ; jump label
       MOV AH, 2                  ; set output function
       MOV DL, 07H                ; set DL=07H
       INT 21H                    ; print a character

       MOV DL, 20H                ; set DL=20H
       INT 21H                    ; print a character
       JMP @INPUT_LOOP            ; jump to label @INPUT_LOOP      

       @NOT_BACKSPACE:            ; jump label
       STOSB                      ; set ES:[DI]=AL
       INC BX                     ; set BX=BX+1
       JMP @INPUT_LOOP            ; jump to label @INPUT_LOOP

     @END_INPUT:                  ; jump label
     
     MOV AH, 4CH                  ; return control to DOS
     INT 21H
   MAIN ENDP
 END MAIN
  
Share: 



Easy Tutor
Easy Tutor author of Program that prompts the user to enter a string, then stores it in a variable using instruction STOSB.... is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 

Other Interesting Articles in Assembly Language:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!