Write a procedure named CountMatches that receives points to two arrays of signed doublewords, and a third parameter that indicates the length of the two arrays. For each element xix, in the first array, if the corresponding yiy, in the second array is equal, increment a count. At the end, return a count of the number of matching array elements in EAX. Write a test program that calls your procedure and passes pointers to two different pairs of arrays. Use the INVOKE statement to call your procedure and pass stack parameters. Create a PROTO declaration for CountMatches. Save and restore any registers (other than EAX) changed by your procedure. You can use the following template and test data to start your coding: .386 .model flat,stdcall .stack 4096 ExitProcess proto, dwExitCode:dword [CountMatches proto....] .data array1 sdword 10,5,4,-6,2 array2 sdword 4,1,2,8,9 count LENGTHOF array1 .code main proc invoke CountMatches,ADDR [, your argument list] invoke CountMatches,ADDR [, your argument list] invoke ExitProcess,0 main endp CountMatches [....] [your code here] CountMatches endp end main.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

1. can you please show me with the screen shot of the output, Thank you.

Write a procedure named CountMatches that receives points to two arrays of signed doublewords, and a third parameter that indicates the length of the two
arrays. For each element xix; in the first array, if the corresponding yiy, in the second array is equal, increment a count. At the end, return a count of the
number of matching array elements in EAX. Write a test program that calls your procedure and passes pointers to two different pairs of arrays. Use the
INVOKE statement to call your procedure and pass stack parameters. Create a PROTO declaration for CountMatches. Save and restore any registers (other
than EAX) changed by your procedure.
You can use the following template and test data to start your coding:
.386
.model flat,stdcall
.stack 4096
ExitProcess proto, dwExitCode:dword
[CountMatches proto.... ]
.data
array1 sdword 10,5,4,-6,2
array2 sdword 4,1,2,8,9
count = LENGTHOF array1
.code
main proc
invoke CountMatches,ADDR [. your argument list]
invoke CountMatches,ADDR [. your argument list]
invoke ExitProcess,0
main endp
CountMatches [...]
[your code here]
CountMatches endp
end main
Transcribed Image Text:Write a procedure named CountMatches that receives points to two arrays of signed doublewords, and a third parameter that indicates the length of the two arrays. For each element xix; in the first array, if the corresponding yiy, in the second array is equal, increment a count. At the end, return a count of the number of matching array elements in EAX. Write a test program that calls your procedure and passes pointers to two different pairs of arrays. Use the INVOKE statement to call your procedure and pass stack parameters. Create a PROTO declaration for CountMatches. Save and restore any registers (other than EAX) changed by your procedure. You can use the following template and test data to start your coding: .386 .model flat,stdcall .stack 4096 ExitProcess proto, dwExitCode:dword [CountMatches proto.... ] .data array1 sdword 10,5,4,-6,2 array2 sdword 4,1,2,8,9 count = LENGTHOF array1 .code main proc invoke CountMatches,ADDR [. your argument list] invoke CountMatches,ADDR [. your argument list] invoke ExitProcess,0 main endp CountMatches [...] [your code here] CountMatches endp end main
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education