Hi everyone!
I've managed to finish this little program ;) I would like you to tell me if there is a way (and need) to optimize the code so that it works faster. Here's the code:
code segment
assume cs:code,ds:code
org 100h
Typewriter_pocetak:
xor si,si
mov dh,10
mov...
Thanks Salem!
So far I've managed to print string character by character but I'm having trouble with the delay part! Here's the code:
code segment
assume cs:code,ds:code
org 100h
Typewriter:
mov si, 0 ; setting the index register
print_next:
mov al,MyString[si] ...
Hi everyone!
I'm pretty new to assembler and I need your help to solve the following problem. I would like to create a DOS program which will display "Hello world" message with typewriter effect.
I'm not asking to provide me with solution, merely to direct me in the right way so I can learn how...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.