diff options
author | Andrew Waterman <andrew@sifive.com> | 2017-03-10 00:13:01 -0800 |
---|---|---|
committer | Andrew Waterman <andrew@sifive.com> | 2017-03-10 00:13:01 -0800 |
commit | 63ad6378a897456aa38896bd4d10b18128918114 (patch) | |
tree | bd1f4931c2a652df3351fed1e5363f1b27be25ef /src | |
parent | c071fb739fc2c447482f7064a413014d3245f229 (diff) | |
download | riscv-isa-manual-63ad6378a897456aa38896bd4d10b18128918114.zip riscv-isa-manual-63ad6378a897456aa38896bd4d10b18128918114.tar.gz riscv-isa-manual-63ad6378a897456aa38896bd4d10b18128918114.tar.bz2 |
Fix quadrant for C.ADD/C.MV/C.EBREAK
Diffstat (limited to 'src')
-rw-r--r-- | src/c.tex | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -964,8 +964,8 @@ C.ANDI expands to {\tt andi rd$'$, rd$'$, imm[5:0]}. \multicolumn{1}{c|}{op} \\ \hline 4 & 5 & 5 & 2 \\ -C.MV & dest$\neq$0 & src$\neq$0 & C0 \\ -C.ADD & dest$\neq$0 & src$\neq$0 & C0 \\ +C.MV & dest$\neq$0 & src$\neq$0 & C2 \\ +C.ADD & dest$\neq$0 & src$\neq$0 & C2 \\ \end{tabular} \end{center} These instructions use the CR format. @@ -1111,7 +1111,7 @@ so expands to {\tt addi x0, x0, 0}. \multicolumn{1}{c|}{op} \\ \hline 4 & 10 & 2 \\ -C.EBREAK & 0 & C0 \\ +C.EBREAK & 0 & C2 \\ \end{tabular} \end{center} |