Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions content/solana-memory-layout/solana-memory-layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,7 @@ function_b:
The animation below illustrates these steps:


<video controls>
<source src="animations/callee-saved-registers.mp4" type="video/mp4">
</video>
<video src="animations/callee-saved-registers.mp4" style="width: 100%; height: 100%;" autoplay="" loop="" muted="" controls="" class=""></video>

Running the above code produces the trace below:

Expand Down Expand Up @@ -343,9 +341,7 @@ point to a new stack frame at `0x200003000`

The animation below explains the above steps:

<video controls>
<source src="animations/callee-saved-registers-trace.mp4" type="video/mp4">
</video>
<video src="animations/callee-saved-registers-trace.mp4" style="width: 100%; height: 100%;" autoplay="" loop="" muted="" controls="" class=""></video>

In the next part of this article, we’ll further demonstrate how to read and write the instruction inputs to memory by writing simple raw assembly programs that directly inspect memory contents.

Expand Down