Printing a new line in assembly language with MS-DOS int 21h system calls
Asked Answered
G

7

5

I've been trying to print a new line while also printing the alphabet using assembly language in nasmide for the past few days and can't get it, what I've tried so far has either printed nothing, printed just A or printed a multitude of symbols, Google hasn't been helpful to me so I decided to post here.

My code so far is

CR equ 0DH
LF equ 0AH

main:
mov AH,02H
mov CX,26
mov DL, 'A'

while1:
cmp DL, 'A'
add DL, 01H
int 21H
mov DL, 0DH
mov DL, 0AH
int 21H
cmp DL, 'Z'
je Next
jmp while1

Next:
mov AH,4CH
int 21h
Glynas answered 5/4, 2013 at 11:34 Comment(1)
use comments in your assemblyMarketa
R
18

Code for printing new line

MOV dl, 10
MOV ah, 02h
INT 21h
MOV dl, 13
MOV ah, 02h
INT 21h

ascii ---> 10 New Line

ascii ---> 13 Carriage Return

That is code in assembly for new line, code is inspirated with writing machine. Our professor told us the story but I'm not good at english.

Cheers :)

Ricks answered 2/1, 2014 at 18:42 Comment(3)
isn't it first 13 and then 10? CR-LF?Waers
Yes, CR LF is the standard DOS line-ending order. But if stdout is going to the screen and not redirected to a file, LF moves the cursor down a line and CR returns it to column 0, so both are necessary and their effects are orthogonal and independent of order. That's why this does actually work on the screen, but will make weird files with program.exe > foo.txt. (And yes, int 21h / ah=02h is STDOUT, not the screen specifically)Wrightson
The 2nd mov ah, 02h is redundant: int 21h with ah=2 preserves AH (and all other registers except AL, where it returns the character written). A few use the full AX for a return value, but AH=02h doesn't.Wrightson
M
4

100% works.

CR equ 0DH
LF equ 0AH

main: 
    mov DL, 'A'

while1:
    mov AH,02H      ;print character
    int 21H 

    mov BL, DL      ;store the value of DL before using DL for print new line

    mov DL, 10      ;printing new line
    mov AH, 02h
    int 21h
    mov DL, 13
    mov AH, 02h
    int 21h

    mov DL, BL      ;return the value to DL

    cmp DL, 'Z'
    je exit 
    add DL, 1       ;store in DL the next character
    jmp while1

exit:
    mov AH,4CH
    int 21h
Magniloquent answered 19/4, 2018 at 9:2 Comment(5)
It's be easier to use BL as your loop counter, and just have one mov DL,BL in the loop as part of printing it. Also, you're very close to having a clean loop structure with a jcc at the bottom, but just missed. It's also pointless to use equ defines for CR and LF if you aren't going to use them.Wrightson
I think you started with the crappy code in the question and didn't fix most of the ugliness.Wrightson
This program can be implemented in many different ways, I understand it. I tried not to change the original version of the code, so that the author of the question could easily understand the changes.Magniloquent
If you check the profile of the user that posted this question, they were "Last seen Apr 5 '13 at 11:50", shortly after they posted this question about 5 years ago. They're not going to see your answer. Yes there are multiple ways to implement something, but the best example for a SO answer would be a clean and efficient version that was as simple as possible, removing the overcomplications from the OP's code.Wrightson
Totally agree with you. You can correct the program to the ideal state and publish it. Perhaps someone in the future will encounter a similar problem and find your answer. The author of the question may already be working at NASA and he does not need our advice :) Best Regards.Magniloquent
K
3

Well, first off:

mov DL, 0DH
mov DL, 0AH
int 21H

Isn't going to do you any good. You load 0Dh into DL and then immediately overwrite it with 0Ah without ever having used the first value... You need to make your call (int 21h) on BOTH characters...

Furthermore, you're using DL for newlines overwrites the prior use for the character... You need to save and restore that value as necessary.

Kilan answered 5/4, 2013 at 12:7 Comment(0)
R
0

you could just use the

 mov ah, 02h
 mov dl, 13
 int 21h
 mov dl, 10
 int 21h 
 ret

but declare it as a proc at the bottom of your "main endp" you can name that function newline and call it where ever you need a newline

Reserve answered 14/5, 2016 at 4:55 Comment(0)
G
0
Mov Ah,02
Mov dl,42
Int 21
Mov dl,0a ---> next line 
Int 21
Mov dl,43
Int 21

Output: 
B
C
Girl answered 8/12, 2018 at 1:1 Comment(1)
Code-only answers are discouraged. Please click on edit and add some words summarising how your code addresses the question, or perhaps explain how your answer differs from the previous answer/answers. ThanksBypath
M
0
.MODEL SMALL;Code model set to small
.STACK 100H ;Stack memory 100H size
.CODE       ;Code starts from here

START:      ;Mark start of code segment

INPUT:      ;Mark input of code segment
MOV AH, 1   ;AH=1,Single key input
INT 21H     ;Input in AL
MOV BL, AL  ;BL=AL, Input in BL

OUTPUT:     ;Mark output of code segment
MOV AH, 2   ;AH=2,Single key output
 
MOV DL, 0AH ;DL=0AH, ASCII for newline
INT 21H     ;Print DL
MOV DL, 0DH ;DL=0DH, ASCII for carriage return
INT 21H     ;Print DL

MOV DL, BL  ;DL=BL,Display the input 
INT 21H     ;Print DL


Exit:       ;Mark exit of code segment
MOV AH, 4CH ;4CH = DOS exit fuction. Handover the control to OS and exit program
INT 21H     ;Invoke the instruction for interrupt where there function needs to be executed
Manmade answered 7/11, 2022 at 5:20 Comment(1)
The standard DOS line-ending is CR LF, not LF CR. It has the same effect if printed to the screen, but not when redirected to a file. Also, this question isn't asking for input, it's printing the alphabet.Wrightson
P
-5
mov dl, 0a
int 21h
int 0ah

try this

Periwig answered 8/3, 2016 at 17:38 Comment(1)
You should explain why and how this fixes the problem. Code fragments on their own are not very helpful.Platino

© 2022 - 2024 — McMap. All rights reserved.