CS 286 Computer Organization and Architecture First Programming Assignment For MIPS R3000 Processor Department of Computer Science Southern Illinois University Edwardsville Fall, 2018 Dr. Hiroshi Fujinoki E-mail: hfujino@siue.edu FirstProgram/001
Assembly Programming using MIPS R3000 CPU What is MIPS R3000 Processor? A 32-bit RISC CPU developed by MIPS Technologies Inc., R3000 CPU Chip Manufactured by IDT Used for high-performance desktops such as workstations Many venders manufacture the chip (NEC, IDT, Toshiba) R3000/001
Assembly Programming using MIPS R3000 CPU The process of assembly programming We start from here! SPIM Simulator does these for us R3000/002
w/ “.asm” file extension CS 286 Computer Organization and Architecture Start developing your first assembly program using SPIM Your source code file w/ “.asm” file extension Prepare your source code Step #1 Three major components in your SPIM program “Test.asm” (1) Data Section (2) Program Definition (3) Program Body FirstProgram/001
CS 286 Computer Organization and Architecture “#” indicates an in-line comment Overview: an assembly program source code for SPIM # ############################################################### # # Test2.asm # # # # Sample assembly code No. 2 for testing SPIM Simulator. # # This sample program is just for understanding SPIM assembler. # .text .globl main main: li $s1, 1 # Load "1" to register $S1 li $s2, 2 # Load "2" (decimal "2") to register $S2 add $s0, $s1, $s2 # Add register S1 and S2 and save the # result to S0 register jr $31 # Return from main (stop the program) # END OF THE LINES ############################################### “.text” label declares the beginning of your assembly program source code Declaring your program body name The program body Assembly instructions Stop your assembly program FirstProgram/002
CS 286 Computer Organization and Architecture The three components in your SPIM program 1. “Data” Section This section is “optional” This is the place where you keep any constants in your program - Error message - Prompt message for user input - Any constant, such as “3.14” - Input/Output buffers (contents vary, but buffer size unchanged) The data section is declared by “.data” assembler directive SPIM assumes the data section at the beginning - Because the program codes are supposed to be at the end FirstProgram/003
CS 286 Computer Organization and Architecture The three components in your SPIM program (continued) 2. “Program Definition” Section This is the place where you declare your assembly program The program definition section is declared by “.text” assembler directive The beginning label of your assembly program declared by “.globl name_of_your_beginning_label” The program definition section should be the simplest (and shortest) We will see this in examples later FirstProgram/004
CS 286 Computer Organization and Architecture The three components in your SPIM program (continued) 3. “Program Body” Section This is the place where you write your program (assembly instructions) You must start with the beginning label you declared - If you declare “.globl main” in program definition - You must start your program with “main:” label Your program should be stopped by “jr $31” instruction If you forget that, the CPU continues to execute What instructions will be executed? We never know before. FirstProgram/005
CS 286 Computer Organization and Architecture Dissection: Program Body Section Instruction field Label field Comment field Beginning of a program main: jr $31 # Stop program Your program Stop your program FirstProgram/006
CS 286 Computer Organization and Architecture This is when we start PC-SPIM for the first time Open your program source code Start using SPIM FirstProgram/007
CS 286 Computer Organization and Architecture Start using SPIM (continued) Specify your source code file FirstProgram/008
CS 286 Computer Organization and Architecture Start using SPIM (continued) Once assembly program is opened, the four windows will be automatically re-loaded FirstProgram/009
CS 286 Computer Organization and Architecture Close-Look (1): “Register” Window “Register” window Contents of registers FirstProgram/010
CS 286 Computer Organization and Architecture Close-Look (2): “Text Segment” Window Assembler instructions (from your source code) Address for your instructions Generated machine codes (in Hexadecimal expression) FirstProgram/011
CS 286 Computer Organization and Architecture Close-Look (3): “Data Segment” Window Address of major program components are shown FirstProgram/012
CS 286 Computer Organization and Architecture Close-Look (4): “Message” Window Messages from SPIM Assembler are shown here Most probably, the least important window ... FirstProgram/013
CS 286 Computer Organization and Architecture To run your program, press this button FirstProgram/014
CS 286 Computer Organization and Architecture Specify starting address of your assembly program (optional) Text Segment Window FirstProgram/015
CS 286 Computer Organization and Architecture Examining registers for the result of program execution FirstProgram/016
CS 286 Computer Organization and Architecture The three components in your SPIM program (continued) FirstProgram/017
CS 286 Computer Organization and Architecture The three components in your SPIM program (continued) The results of program execution FirstProgram/018