| | |
help please
![]() |
•
•
Join Date: May 2009
Posts: 1
Reputation:
Solved Threads: 0
please help me to correct this program:
-------------------------
the output i need
A
1 2
B C D
3 4 5 6
E F G H I
asm Syntax (Toggle Plain Text)
.model small .stack 64 .data x DB 'A' y DB '1' LN DB 13,10,'$' .code mov cx,5 L1: mov Bx,Cx mov cx,5 L2: mov ah,9 lea dx,x int 21h loop L2 mov ah,2 mov dx,y int 21h inc y inc x mov cx,bx loop L1 mov ax,4c00h int 21h main endp end main
the output i need
A
1 2
B C D
3 4 5 6
E F G H I
Last edited by John A; May 13th, 2009 at 3:21 am. Reason: added code tags
![]() |
Other Threads in the Assembly Forum
- Previous Thread: heeeeelp plz :( (assemply lang)
- Next Thread: I want to learn assembly
| Thread Tools | Search this Thread |





