Momo

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

# ------------ start program -----------# save as 'demo.

s'
#
# 3.7 p.229
# abs $t2,$t3
#
.data
big1: .word 0xFFFFFFFF
big2: .word 0x1C2D3E4F
.text
main:
lw $t3, big1
# start seq here
addu $t2,$zero,$t3
bgez $t3,next
sub $t2,$zero,$t3
next:
# end seq
sw $s0, big1
sw $s1, big2
# ------------ end program ------------

You might also like