need help with assembly using debug.exe

indianj

Beta member
Messages
4
i am writing program that accepts uppercase user input and converts it into lowercase using debug.exe.

here is the code that i wrote it so far:
i am almost halfway there.

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 help if you can.
 
indianj said:
i am writing program that accepts uppercase user input and converts it into lowercase using debug.exe.

here is the code that i wrote it so far:
i am almost halfway there.

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 help if you can.


Can you use an Assembly compiler other than debug?
 
Back
Top Bottom