7. If we assemble the following MARIE assembly language program: Memory Address (Hexadecimal) 110 111 112 113 A 114 B115 C116 Instruction Load A Sub B Store C Halt 0016 FEDE 0000 1) Show the symbol table after the first pass. 2) Show the translated instructions after the first pass. 3) Show the translated instructions after the second pass.

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
Topic Video
Question

Need help with the following question in relations to MARIE and assembly programming. IT's attached below. Thanks!

### Assembly Program Description

The following is an example of a MARIE assembly language program and the steps to assemble it:

#### Program Instructions

| Memory Address (Hexadecimal) | Instruction   |
|------------------------------|---------------|
| 110                          | Load A        |
| 111                          | Sub B         |
| 112                          | Store C       |
| 113                          | Halt          |
| A                            | 0016          |
| B                            | FEDE          |
| C                            | 0000          |

### Tasks

1. **Show the symbol table after the first pass.**
2. **Show the translated instructions after the first pass.**
3. **Show the translated instructions after the second pass.**

---

### 1. Symbol Table After the First Pass

The symbol table is created during the first pass of the assembler. It records the addresses assigned to the labels used in the program.

| Symbol | Address |
|--------|---------|
| A      | 114     |
| B      | 115     |
| C      | 116     |

### 2. Translated Instructions After the First Pass

During the first pass, the assembler translates symbolic addresses to numerical addresses but does not yet resolve the data part. Here’s what it looks like:

| Memory Address (Hexadecimal) | Machine Code                |
|------------------------------|-----------------------------|
| 110                          | Load [114]                    |
| 111                          | Sub [115]                     |
| 112                          | Store [116]                   |
| 113                          | Halt                        |
| 114                          | 0016                        |
| 115                          | FEDE                        |
| 116                          | 0000                        |

### 3. Translated Instructions After the Second Pass

In the second pass, the assembler resolves the symbolic addresses to their corresponding numeric values and produces the final machine code.

| Memory Address (Hexadecimal) | Machine Code |
|------------------------------|--------------|
| 110                          | 3014         |
| 111                          | 3115         |
| 112                          | 3216         |
| 113                          | 7000         |
| 114                          | 0016         |
| 115                          | FEDE         |
| 116                          | 0000         |

**Explanation:**

- **110:** Load A translates to `3014` (Load operation with address 114).
- **111:** Sub
Transcribed Image Text:### Assembly Program Description The following is an example of a MARIE assembly language program and the steps to assemble it: #### Program Instructions | Memory Address (Hexadecimal) | Instruction | |------------------------------|---------------| | 110 | Load A | | 111 | Sub B | | 112 | Store C | | 113 | Halt | | A | 0016 | | B | FEDE | | C | 0000 | ### Tasks 1. **Show the symbol table after the first pass.** 2. **Show the translated instructions after the first pass.** 3. **Show the translated instructions after the second pass.** --- ### 1. Symbol Table After the First Pass The symbol table is created during the first pass of the assembler. It records the addresses assigned to the labels used in the program. | Symbol | Address | |--------|---------| | A | 114 | | B | 115 | | C | 116 | ### 2. Translated Instructions After the First Pass During the first pass, the assembler translates symbolic addresses to numerical addresses but does not yet resolve the data part. Here’s what it looks like: | Memory Address (Hexadecimal) | Machine Code | |------------------------------|-----------------------------| | 110 | Load [114] | | 111 | Sub [115] | | 112 | Store [116] | | 113 | Halt | | 114 | 0016 | | 115 | FEDE | | 116 | 0000 | ### 3. Translated Instructions After the Second Pass In the second pass, the assembler resolves the symbolic addresses to their corresponding numeric values and produces the final machine code. | Memory Address (Hexadecimal) | Machine Code | |------------------------------|--------------| | 110 | 3014 | | 111 | 3115 | | 112 | 3216 | | 113 | 7000 | | 114 | 0016 | | 115 | FEDE | | 116 | 0000 | **Explanation:** - **110:** Load A translates to `3014` (Load operation with address 114). - **111:** Sub
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
Instruction Format
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
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