@@ -752,8 +752,8 @@ This document does not want to be a full description of the Ethereum virtual mac
752752Please refer to a different document if you are interested in the precise semantics.
753753
754754Opcodes marked with ``- `` do not return a result and all others return exactly one value.
755- Opcodes marked with ``F ``, ``H ``, ``B ``, ``C ``, ``I ``, ``L ``, ``P ``, ``N ``, `` R `` and ``O `` are present since
756- Frontier, Homestead, Byzantium, Constantinople, Istanbul, London, Paris, Cancun, Prague or Osaka respectively.
755+ Opcodes marked with ``F ``, ``H ``, ``B ``, ``C ``, ``I ``, ``L ``, ``P ``, ``N `` and ``O `` are present since
756+ Frontier, Homestead, Byzantium, Constantinople, Istanbul, London, Paris, Cancun or Osaka respectively.
757757
758758In the following, ``mem[a...b) `` signifies the bytes of memory starting at position ``a `` up to
759759but not including position ``b ``, ``storage[p] `` signifies the storage contents at slot ``p ``, and
@@ -812,7 +812,7 @@ the ``dup`` and ``swap`` instructions as well as ``jump`` instructions, labels a
812812+-------------------------+-----+---+-----------------------------------------------------------------+
813813| sar(x, y) | | C | signed arithmetic shift right y by x bits |
814814+-------------------------+-----+---+-----------------------------------------------------------------+
815- | clz(x) | | O | leading zeros of x in binary representation , 256 if x == 0 |
815+ | clz(x) | | O | number of leading zero bits of x , 256 if x == 0 |
816816+-------------------------+-----+---+-----------------------------------------------------------------+
817817| addmod(x, y, m) | | F | (x + y) % m with arbitrary precision arithmetic, 0 if m == 0 |
818818+-------------------------+-----+---+-----------------------------------------------------------------+
0 commit comments