diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -28,11 +28,10 @@ said to be in the 'branch delay slot'. For example, this does not loop endlessly even though the body of `main_loop_delay` seems empty: ``` - lui $2,0xf - ori $5,0xffff + lui $1,0xf main_loop_delay: - bne $2,$0,main_loop_delay - addiu $2,-1 + bne $1,$0,main_loop_delay + addiu $1,-1 ``` Also note that when the file ends with a branch/jump, a `nop` *must* follow to |