Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
7
Task/Jump-anywhere/MIPS-Assembly/jump-anywhere.mips
Normal file
7
Task/Jump-anywhere/MIPS-Assembly/jump-anywhere.mips
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
j GoHere ;the assembler will convert this label to a constant memory address for us.
|
||||
|
||||
nop ; branch delay slot. This instruction would get executed DURING the jump.
|
||||
; But since NOP intentionally does nothing, it's not a problem.
|
||||
|
||||
GoHere:
|
||||
addiu $t0,1 ;this instruction is the first one executed after jumping.
|
||||
Loading…
Add table
Add a link
Reference in a new issue