57 Program to convert Lower Case String to Upper Case String in 8086 Microprocessor

Convert Letter : https://codingatharva.blogspot.com/2019/01/11-program-to-convert-capital-letter-in.html Code: ; Program to convert Lo...
Read More

56 Program to concatenate two string in 8086 Microprocessor

Code: ; Program to concat two string .MODEL SMALL .STACK 100H .DATA STR1 DB 'CODING $' STR2 DB 'ATHARVA$' L1 DB...
Read More

55 Program to reverse the given String in 8086 Microprocessor

Code: ; Program to reverse the given String .MODEL SMALL .STACK 100H .DATA OSTR DB 'CODING$' DSTR DB ? LEN  DB 0 .COD...
Read More