.data image1: .word 0x00010203, 0x04101112, 0x13142021, 0x22232430, 0x31323334, 0x40414243, 0x44000000 image2: .word 0xaaabacad, 0xbabbbcbd, 0xcacbcccd, 0xdadbdcdd block1: .word image1, 5, 3, 2, 2, 2 block2: .word image2, 4, 1, 0, 1, 0 block3: .word image1, 5, 0, 4, 0, 4 block4: .word iamge1, 5, 1, 4, 1, 4 .text la $a0, block1 la $a1, block2 li $a3, 0 # figure out what *should* happen before you call byteblt jal byteblt la $a0, block1 la $a1, block2 li $a3, 3 # figure out what *should* happen before you call byteblt jal byteblt la $a0, block3 la $a1, block4 li $a3, 0 # figure out what *should happen before you call byteblt jal byteblt la $a0, block4 la $a1, block3 li $a3, 0 # figure out what *should* happen before you call byteblt jal byteblt