1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-04-30 17:13:22 -07:00

fix typos

This commit is contained in:
Connor Olding 2016-10-11 15:45:44 -07:00
parent 115bae0689
commit 6548bd3e5b

View File

@ -120,14 +120,14 @@ my_label:
sw s3, label+4(s0) sw s3, label+4(s0)
; relative labels are borrowed from asw, except ours require a suffixing colon: ; relative labels are borrowed from asw, except ours require a suffixing colon:
-: : #1 -: ; #1
b ++ ; branches to #3 b ++ ; branches to #3
nop nop
+: +:
-: ; #2 -: ; #2
b -- ; branches to #1 b -- ; branches to #1
nop nop
+: : #3 +: ; #3
b - ; branches to #2 b - ; branches to #2
nop nop
@ -198,7 +198,7 @@ In order of numerical value, with intended usage:
* R#: whereas # is a decimal number from 0 to 31. * R#: whereas # is a decimal number from 0 to 31.
aliased to the appropriate register, for instance: aliased to the appropriate register, for instance:
R0 is ZERO, R1 is at, R2 is V0, etc. R0 is ZERO, R1 is AT, R2 is V0, etc.
* F#: coprocessor 1 registers, whereas # is a decimal number from 0 to 31. * F#: coprocessor 1 registers, whereas # is a decimal number from 0 to 31.