Write an assembly language program to convert lowercase to uppercase?

1 answer

Answer

1106736

2026-04-23 20:55

+ Follow

inc bx ; next char.

loop upper_case

; int 21h / ah=09h - output of a string at ds:dx.

; string must be terminated by '$' sign.

lea dx, string+2

mov ah, 09h

int 21h

jmp start ; loop

; wait for any key press....

mov ah, 0

int 16h

null:

ret

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.