Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an Pentium NASM assembly language program to locate a character in a string. Read a random string and a character from the input in

Write an Pentium NASM assembly language program to locate a character in a string.

Read a random string and a character from the input in a main procedure. Use the other procedure to determine if there is such a character in the string. The procedure return yes or no to the main procedure and the main procedure display the result.

pass the parameters using a register.

pass the parameters using the stack.

This is my code:

BUF_LEN EQU 41

%include "io.mac"

.STACK 200H

.DATA

PROMPT_MSG DB "ENTER AN STRING:- ",0

CHAR_MSG DB "ENTER ANY CHARACTER :- ",0

NF_MSG DB "NO, CHARACTER FOUND IN THE GIVEN STRING"

YES_MSG DB "YES. CHARACTER FOUND IN THE GIVEN STRING "

COUNT DB 0

.UPDATA

String RESB BUF_LEN

.CODE

.STARTUP

PutStr PROMPT_MSG

GetStr String,BUF_LEN

mov EBX, String

mov AX,COUNT

PutStr CHAR_MSG

GetCh AL

call check

done:

.EXIT

check:

push EBX

Push AL

push AX

yes_no:

mov SI,[EBX]

cmp AL,[SI]

jne NotFound

inc AX

skip:

inc SI

jmp check

cmp AX,0

je NotFound

mov DL,AX

inc DL

jmp check_done

check_done:

PutStr YES_MSG

PutInt DL

pop EBX

pop AL

leave

ret

NotFound:

PutStr NF_MSG

jmp done

when I run it, DOSBOX showed there are many errors but I couldnot find out them, please check and fix it to me, thank you

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

Oracle Database 11g SQL

Authors: Jason Price

1st Edition

0071498508, 978-0071498500

More Books

Students also viewed these Databases questions

Question

Find steers function. Find steers function.

Answered: 1 week ago

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago