You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
beq $t0, $t1, printmsg1 #beq is the branch equal instruction which compare $t0==$t1 & if they are equal then jump to the given label
bne $t0, $t1, printmsg2 #bne is the branch not equal instruction which compare $t0!=$t1 & if result is true i.e., both are not equal then it will jump to the label