aboutsummaryrefslogtreecommitdiffstats
path: root/docs/miscellaneous.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-10-12 06:41:37 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-10-12 16:15:06 +0800
commit3d12c2ddc72d15dfcf599a089f104a2a5c224f41 (patch)
treec84449f52d6bc7780b841d9d3ae8aa67606563da /docs/miscellaneous.rst
parentf0524ed45a407ff9b1b59ee04edbfb9489a4f8a1 (diff)
downloaddexon-solidity-3d12c2ddc72d15dfcf599a089f104a2a5c224f41.tar.gz
dexon-solidity-3d12c2ddc72d15dfcf599a089f104a2a5c224f41.tar.zst
dexon-solidity-3d12c2ddc72d15dfcf599a089f104a2a5c224f41.zip
Merge the two EVM memory introduction sections
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r--docs/miscellaneous.rst2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index cdc82c78..47da33b8 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -60,8 +60,6 @@ The position of ``data[4][9].b`` is at ``keccak256(uint256(9) . keccak256(uint25
Layout in Memory
****************
-EVM memory is linear. Reading is limited to 256-bit width, but both 8-bit and 256-bit writes are allowed. Memory size is 0 at the beginning of execution. Memory is expanded by accessing (either reading or writing) a previously untouched memory offset. At the time of expansion, the cost in gas must be paid.
-
Solidity reserves three 256-bit slots:
- 0 - 64: scratch space for hashing methods
- 64 - 96: currently allocated memory size (aka. free memory pointer)