CS508 Assignment #4 - Data Definitions, Memory Offsets

CS 508
Computer Organization and Design
Assignment #4
Data Definitions, Memory Offsets
The following list is a description for data that are to be defined in the data segment of a RISC-V assembly language program. The data items are to be defined in the order listed. For this step, start with the shell program we created in class and using the RARS program, code the data segment using the data items below. For each item, determine the memory offset and include it as a comment after each definition like we did in the class example. Remember, each data item requires a symbol name, assembler directive and initial value as specified. Appropriate assembler directives should be selected based on the size of the data values specified. You are to select an arbitrary value for the initial value for each data item.
1. An 8-bit numeric value in the range -128 to +127.
2. A character string containing 8 alphanumeric characters.
3. A 16-bit numeric value in the range 0 to 1000.
4. A single lower-case alphabetic character.
5. A 32-bit numeric value in the range -500 to +250.
6. A 64-bit numeric value equal to the number of seconds in a week.
7. An allocation of empty memory equivalent to the total number of bytes required for
data items 1 – 6.
Submit your source code assembly language program (with .asm extension). Note: the text segment of this program will only consist of the two lines of exit code. There are no other coding requirements in this assignment.
Grading Criteria for this assignment:
Header comments: 5 points
Correct data segment definition: 10 points
Correct memory offsets listed in comments: 10 points
Total 25 points

-
Rating:
5/
Solution: CS508 Assignment #4 - Data Definitions, Memory Offsets