Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

no program entry point . MODEL SMALL . STACK 1 0 0 H . DATA MSG DB 8 0 , ? , 8 0 DUP

no program entry point
.MODEL SMALL
.STACK 100H
.DATA
MSG DB 80,?,80 DUP(0)
.CODE
MOV AX,@DATA
MOV DS,AX
MOV AH,0AH
LEA DX,MSG
INT 21H
MOV CX,WORD PTR [MSG+1]
LEA SI,MSG+2
MOV AH,02H
MOV DL,'*'
CMP BYTE PTR [SI],'A'
JE REPLACE
CMP BYTE PTR [SI],'E'
JE REPLACE
CMP BYTE PTR [SI],'I'
JE REPLACE
CMP BYTE PTR [SI],'O'
JE REPLACE
CMP BYTE PTR [SI],'U'
JE REPLACE
CMP BYTE PTR [SI],'a'
JE REPLACE
CMP BYTE PTR [SI],'e'
JE REPLACE
CMP BYTE PTR [SI],'i'
JE REPLACE
CMP BYTE PTR [SI],'o'
JE REPLACE
CMP BYTE PTR [SI],'u'
JE REPLACE
JMP NEXT
REPLACE: MOV BYTE PTR [SI],DL
NEXT: INC SI
LOOP NEXT
MOV AH,4CH
INT 21H
END

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Introduction To Databases And Data Warehouses

Authors: Nenad Jukic, Susan Vrbsky, Svetlozar Nestorov

1st Edition

1943153191, 978-1943153190

More Books

Students also viewed these Databases questions

Question

What are the Five Phases of SDLC? Explain each briefly.

Answered: 1 week ago

Question

How can Change Control Procedures manage Project Creep?

Answered: 1 week ago