memory write slide

Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
Sean Cross 2023-08-15 15:44:23 +02:00
parent c0a5872a98
commit 8968455dee
3 changed files with 9 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -84,6 +84,14 @@
<h2>Peripherals</h2> <h2>Peripherals</h2>
<img data-src="img/esp32s3-peripheral-list.png"> <img data-src="img/esp32s3-peripheral-list.png">
</section> </section>
<section>
<h2>Memory is Just a Peripheral</h2>
<ul>
<li>When you write to memory, it remembers the data</li>
<li>When you read from memory, you get the value</li>
<li>Your program is just initialised memory</li>
</ul>
</section>
<section> <section>
<h2>Peripherals Are Just Special Memory</h2> <h2>Peripherals Are Just Special Memory</h2>
<ul> <ul>
@ -128,7 +136,7 @@
</ul> </ul>
</section> </section>
<section> <section>
<h2>Creating Peripherals</h2> <h2>Creating New Peripherals</h2>
<ul> <ul>
<li>Renode is written in C#</li> <li>Renode is written in C#</li>
<li>Like Java, C# has an <code>eval()</code> function</li> <li>Like Java, C# has an <code>eval()</code> function</li>