For going over Lab 4 in class: .data msg1: .asciiz "First Message" # hex: 46 69 72 73 74 20 4D 65 73 73 61 67 65 00 space: .asciiz " " # hex: 20 00 return: .asciiz "\n" # hex: 0A 00 msg2: .asciiz "The value of $t0 is" # hex: 54 68 65 20 76 61 6C 75 65 20 6F 66 20 24 74 30 20 69 73 00 .align 2 nums: .word 0x41,0x42,0x43,0x44 .data chars: .byte 0x41,0x42,0x43,0x44,0x45,0x00 Symbol Table: msg1 0x10010000 space 0x1001000e return 0x10010010 msg2 0x 10010012 nums 0x10010028 chars 0x10010038 Memory: +0 +4 +8 +c 0x10010000 0x73726946 0x654D2074 0x67617373 0x00200065 +10 +14 +18 +1c 0x10010000 0x6854000a 0x61762065 0x2065756c 0x2420666f +0 +4 +8 +c 0x10010020 0x69203074 0x00000073 0x00000041 0x00000042 +10 +14 +18 +1c 0x10010020 0x00000043 0x00000044 0x44434241 0x0000000045