Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
Sean Cross 2022-04-08 22:12:54 +08:00
parent 0546832f08
commit 9d247c4f9c
2 changed files with 7 additions and 10 deletions

View File

@ -71,8 +71,6 @@ section.has-light-background h6 {
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 10%; background-size: 10%;
background-position-x: 50px; background-position-x: 50px;
width: 100%;
height: 68px;
position: absolute; position: absolute;
bottom: 0em; bottom: 0em;
right: 0em; right: 0em;
@ -81,7 +79,7 @@ section.has-light-background h6 {
text-align: right; text-align: right;
font-size: 1.0em; font-size: 1.0em;
width: 100%; width: 100%;
height: 68px; height: 80px;
background-color: rgb(78, 78, 78); background-color: rgb(78, 78, 78);
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;

View File

@ -230,7 +230,7 @@
<section> <section>
<section data-transition="slide-in fade-out"> <section data-transition="slide-in fade-out">
<h2>What is a Computer?</h2> <h2>What is a Computer?</h2>
<ul> <ul class="fragment">
<li>A system of devices</li> <li>A system of devices</li>
<li>One or more processors</li> <li>One or more processors</li>
<li>One or more buses</li> <li>One or more buses</li>
@ -312,7 +312,7 @@
sysbus LoadELF @firmware.elf sysbus LoadELF @firmware.elf
</code></pre> </code></pre>
<pre class="fragment"><code data-trim> <pre class="fragment"><code data-trim>
sysbus LoadBinary @rom.bin 0x20000000 sysbus LoadBinary @rom.bin 0
</code></pre> </code></pre>
<!-- <pre class="fragment"><code data-trim> <!-- <pre class="fragment"><code data-trim>
sysbus LoadSymbolsFrom @rom.elf sysbus LoadSymbolsFrom @rom.elf
@ -338,10 +338,9 @@
<li>Jump to loaded program</li> <li>Jump to loaded program</li>
</ol> </ol>
<pre class="fragment"><code data-trim> <pre class="fragment"><code data-trim>
sysbus LoadBinary @rom.bin 0x20000000 sysbus LoadBinary @rom.bin 0
sysbus.cpu VectorTableOffset 0x20000000 sysbus.cpu SP `sysbus ReadDoubleWord 0`
sysbus.cpu SP `sysbus ReadDoubleWord 0x20000000` sysbus.cpu PC `sysbus ReadDoubleWord 4`
sysbus.cpu PC `sysbus ReadDoubleWord 0x20000004`
start start
</code></pre> </code></pre>
</section> </section>
@ -568,7 +567,7 @@
<section> <section>
<h2>Peripheral Rapid Development</h2> <h2>Peripheral Rapid Development</h2>
<img src="media/hardware-20191117-cropped.jpg"> <img src="media/hardware-20191117-cropped.jpg">
Betrusted Prototype Betrusted Prototype, 17/11/2019
</section> </section>
<section> <section>
<h2>Peripheral Documentation</h2> <h2>Peripheral Documentation</h2>