aboutsummaryrefslogtreecommitdiffstats
path: root/docs/assembly.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-07-09 15:42:54 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-02-27 20:42:41 +0800
commitafa4a48e3770630a744ef98ccd518601e1f35c86 (patch)
treefdcf6a0b114a6630f8527992a1ff07ab85e593ed /docs/assembly.rst
parent468d0f6199e71f0c7f4b8bd667c8f31feba41a9d (diff)
downloaddexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar
dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.gz
dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.bz2
dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.lz
dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.xz
dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.zst
dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.zip
Remove ROL/ROR as they are not part of EIP145 anymore
Diffstat (limited to 'docs/assembly.rst')
-rw-r--r--docs/assembly.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/assembly.rst b/docs/assembly.rst
index 245b5383..9eabc99e 100644
--- a/docs/assembly.rst
+++ b/docs/assembly.rst
@@ -212,10 +212,6 @@ In the grammar, opcodes are represented as pre-defined identifiers.
+-------------------------+-----+---+-----------------------------------------------------------------+
| sar(x, y) | | C | arithmetic shift right x by y bits |
+-------------------------+-----+---+-----------------------------------------------------------------+
-| ror(x, y) | | C | rotate right x by y bits |
-+-------------------------+-----+---+-----------------------------------------------------------------+
-| rol(x, y) | | C | rotate left x by y bits |
-+-------------------------+-----+---+-----------------------------------------------------------------+
| addmod(x, y, m) | | F | (x + y) % m with arbitrary precision arithmetics |
+-------------------------+-----+---+-----------------------------------------------------------------+
| mulmod(x, y, m) | | F | (x * y) % m with arbitrary precision arithmetics |