Commit 0025fff1 authored by Sebastian Stammler's avatar Sebastian Stammler Committed by GitHub

Merge pull request #7478 from AKABABA-ETH/specs

specs: fix typos
parents d1623ba7 625b399e
...@@ -199,7 +199,7 @@ This means the start and end of a read/write operation must fall within the same ...@@ -199,7 +199,7 @@ This means the start and end of a read/write operation must fall within the same
If an operation were to violate this, the input `count` of the read/write syscall must be If an operation were to violate this, the input `count` of the read/write syscall must be
truncated such that the effective address of the last byte read/writtten matches the input effective address. truncated such that the effective address of the last byte read/writtten matches the input effective address.
The VM must read/write the maximum amount of bytes possible without crossing the input adress alignment boundary. The VM must read/write the maximum amount of bytes possible without crossing the input address alignment boundary.
For example, the effect of a write request for a 3-byte aligned buffer must be exactly 3 bytes. For example, the effect of a write request for a 3-byte aligned buffer must be exactly 3 bytes.
If the buffer is misaligned, then the VM may write less than 3 bytes depending on the size of the misalignment. If the buffer is misaligned, then the VM may write less than 3 bytes depending on the size of the misalignment.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment