![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Mar 2005
Posts: 8
Rep Power: 0
![]() |
Displaying characters program
HI, once again im stuck ,
can anyone please tell me why this program doesn't display anything? thanks .model small
.stack 100h
.data
array db 31h,32h,33h,34h
count =($ - array)
.code
main proc
mov ax,@data
mov ds,ax
mov cx,count
mov si,offset array
next:
mov ah,2
mov dl,[si]
int 21h
inc si
loop next
mov ax,4C00h
int 21h
main endp
end main |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|