Calculate the positive difference between the variables left


Assignment: Programming Project

Write a simple assembly language program that performs a few arithmetic operations. This will require you to establish your programming environment and create the capability to assemble and execute the other assembly programs that will be part of this course.

Access to an assembler is needed to complete lab exercises and develop Assembly Language projects. Examples include Microsoft Visual Studio, asm, masm etc. Must compile, build and run in visual studio.

Your North Lake College student ID number is a 7-digit number (3098015). Begin by splitting your student ID into two different values. Assign the four most significant digits to a variable called 'left' and the three least significant digits to a variable called 'right'.

You must choose the data type that is appropriate for the range of decimal values each variable can store. You will choose a data type when you define each of the variables in your program. Try to make efficient use of memory.

A. Calculate the sum of the two variables 'left' and 'right'. Store this result in a variable called 'total'.

B. Calculate the positive difference between the variables 'left' and 'right'. Store this result in a variable called 'diff'.

C. Define a character string called 'message' that contains the characters, "Hello World!".

D. Define an array of data type WORD called 'numbers' that is initialized to the following values: 1, 2, 4, 8, 16, 32, and 64.

E. Write assembly language code using what you know so far (do not look ahead in the book just yet) to determine the length of 'numbers'. Store this value in a variable called 'arrayLength'.

a. Move the contents of the variable 'left' into the EAX register.
b. Move the contents of the variable 'right' into the EBX register.
c. Move the contents of the variable 'total' into the ECX register.
d. Move the contents of the variable 'diff' into the EDX register.
e. Move the contents of the variable 'arrayLength' into the ESI register.
f. Call the author's DumpReg routine to display the contents of the registers.

Format your homework according to the give formatting requirements:

a. The answer must be double spaced, typed, using Times New Roman font (size 12), with one-inch margins on all sides.

b. The response also includes a cover page containing the title of the homework, the course title, the student's name, and the date. The cover page is not included in the required page length.

c. Also include a reference page. The references and Citations should follow APA format. The reference page is not included in the required page length.

Solution Preview :

Prepared by a verified Expert
Assembly Language: Calculate the positive difference between the variables left
Reference No:- TGS03119853

Now Priced at $35 (50% Discount)

Recommended (91%)

Rated (4.3/5)