hello everyone, i am taking assembly class where i need to use debug.exe program. i need help writing an assembly language program that accepts uppercase user input and converts it to lowercase in debug.exe?
here i wrote that program uses two functions: first one reads keyboard and second one writes on screen. It reads the keyboard characters until it finds a carriage return.
c:\>debug
-a100
178E:0100 mov ah,01;
178E:0102 int 21;
178E:0102 cmp al,0d;
178E:0106 jnz 0100;
178E:0108 mov ah,02;
178E:010A mov dl,al;
178E:010C int 21;
178E:010E int 20;
178E:0110
-w
(W)rite error, no destination defined
-h 0110 - 0100
^ Error
-h 0110-0100
^ Error
-h0110-0100
^ Error
-h
^ Error
-rcx 0010
^ Error
-rcx
CX 0000
:0010
-n text.com
-w
Writing 00010 bytes
-g
please let me know if you know anything.