Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

plz do this in Assembly language and if possible provied an explanation. 1. The following procedure evaluates the function F(x, y, z) where F(x, y,

plz do this in Assembly language and if possible provied an explanation. image text in transcribed
1. The following procedure evaluates the function F(x, y, z) where F(x, y, z) = ( x - y + z)*2 - 5 procedure EvalF; var x, y, z, f: integer; begin write 'x?': read x; write cr, lf, 'y? '; read y; write cr, if, 'z? '; read z; f:= ( x - y + z)*2 - 5; write cr, if, 'f( x, y, z) = ', f end EvalF; Translate Evalf into X86 assembly language. Allocate words for the variables x, y, z, and f. Note that the evaluation of F does not require multiplication. Use GetInt and PutInt for integer 1/9 1. The following procedure evaluates the function F(x, y, z) where F(x, y, z) = ( x - y + z)*2 - 5 procedure EvalF; var x, y, z, f: integer; begin write 'x?': read x; write cr, lf, 'y? '; read y; write cr, if, 'z? '; read z; f:= ( x - y + z)*2 - 5; write cr, if, 'f( x, y, z) = ', f end EvalF; Translate Evalf into X86 assembly language. Allocate words for the variables x, y, z, and f. Note that the evaluation of F does not require multiplication. Use GetInt and PutInt for integer 1/9

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

25 Vba Macros For Data Analysis In Microsoft Excel

Authors: Klemens Nguyen

1st Edition

B0CNSXYMTC, 979-8868455629

Students also viewed these Databases questions

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago