Question #1 (10 points) Write an ASM program that evaluates the following expression, using variables: Z = (A - B) - (C - D) 1. Declare and initialize the memory variable A to 32-bit signed integer value -543210 and variable B to 16-bit signed integer value -3210. 2. Declare the memory variables C and D and read in their values from the keyboard as 32-bit signed integer value -43210 and 8-bit signed integer values -10, respectively. a. You should display a message asking for the value of the variable, for example: “What is the value of C?” then b. Read in the value of C from the keyboard and then c. Display the value you have read beside (ie, to the right of) the message “What is the value of C?”. Then repeat for variable D in the next line. 3. Variable Z should be declared as a 32-bit signed integer. 4. Display the string “Z = (A - B) - (C - D)” alone in a single line. 5. Display the values of all the variables A, B, C, D together in the next line (in the order in which they appear in the expression); each separated by 3 spaces and a semicolumn and 3 spaces again. 6. Display an empty line. 7. Display the final result contained in variable Z, in binary, then in decimal, and then in hexadecimal; each in a separate line.

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

Question #1 (10 points) Write an ASM program that evaluates the following expression, using variables: Z = (A - B) - (C - D) 1. Declare and initialize the memory variable A to 32-bit signed integer value -543210 and variable B to 16-bit signed integer value -3210. 2. Declare the memory variables C and D and read in their values from the keyboard as 32-bit signed integer value -43210 and 8-bit signed integer values -10, respectively. a. You should display a message asking for the value of the variable, for example: “What is the value of C?” then b. Read in the value of C from the keyboard and then c. Display the value you have read beside (ie, to the right of) the message “What is the value of C?”. Then repeat for variable D in the next line. 3. Variable Z should be declared as a 32-bit signed integer. 4. Display the string “Z = (A - B) - (C - D)” alone in a single line. 5. Display the values of all the variables A, B, C, D together in the next line (in the order in which they appear in the expression); each separated by 3 spaces and a semicolumn and 3 spaces again. 6. Display an empty line. 7. Display the final result contained in variable Z, in binary, then in decimal, and then in hexadecimal; each in a separate line.

based on this template, 

A Template for Assembly Language Programs
TITLE Program Template
(Template.asm)
; Program Description:
; Author:
; Creation Date:
; Revisions:
; Date:
anything after the ';' is ignored
Modified by:
INCLUDE Irvine32.inc ; contains library procedures for IA-32
; for 32-bit protected mode programs
; data segment, read and write
.data
; (insert variable declarations here)
; code segment, read-only
.code
main PROC
; (insert executable instructions here)
exit
main ENDP
; (insert additional procedures here)
END main
This is the template to follow in all your programs
Transcribed Image Text:A Template for Assembly Language Programs TITLE Program Template (Template.asm) ; Program Description: ; Author: ; Creation Date: ; Revisions: ; Date: anything after the ';' is ignored Modified by: INCLUDE Irvine32.inc ; contains library procedures for IA-32 ; for 32-bit protected mode programs ; data segment, read and write .data ; (insert variable declarations here) ; code segment, read-only .code main PROC ; (insert executable instructions here) exit main ENDP ; (insert additional procedures here) END main This is the template to follow in all your programs
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Fundamentals of Computer System
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.
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