Skip to content

Commit

Permalink
Fix typos in sha512sig* instruction examples.
Browse files Browse the repository at this point in the history
- Register ordering of examples was wrong. See Issue #128

 On branch master
 Your branch is up-to-date with 'origin/master'.

 Changes to be committed:
	modified:   insns/sha512sig0h.adoc
	modified:   insns/sha512sig0l.adoc
	modified:   insns/sha512sig1h.adoc
	modified:   insns/sha512sig1l.adoc
  • Loading branch information
ben-marshall committed Sep 22, 2021
1 parent 9fae816 commit 1b66e0a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/scalar/insns/sha512sig0h.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The entire Sigma0 transform for SHA2-512 may be computed on RV32
using the following instruction sequence:
sha512sig0l t0, a0, a1
sha512sig0h t1, a0, a1
sha512sig0h t1, a1, a0
====

Expand Down
2 changes: 1 addition & 1 deletion doc/scalar/insns/sha512sig0l.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The entire Sigma0 transform for SHA2-512 may be computed on RV32
using the following instruction sequence:
sha512sig0l t0, a0, a1
sha512sig0h t1, a0, a1
sha512sig0h t1, a1, a0
====

Expand Down
2 changes: 1 addition & 1 deletion doc/scalar/insns/sha512sig1h.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The entire Sigma1 transform for SHA2-512 may be computed on RV32
using the following instruction sequence:
sha512sig1l t0, a0, a1
sha512sig1h t1, a0, a1
sha512sig1h t1, a1, a0
====

Expand Down
2 changes: 1 addition & 1 deletion doc/scalar/insns/sha512sig1l.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The entire Sigma1 transform for SHA2-512 may be computed on RV32
using the following instruction sequence:
sha512sig1l t0, a0, a1
sha512sig1h t1, a0, a1
sha512sig1h t1, a1, a0
====

Expand Down

0 comments on commit 1b66e0a

Please sign in to comment.