Skip to content

Commit 84d456f

Browse files
committed
Fix dead links
1 parent 1e32378 commit 84d456f

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

warduino/.vitepress/components/home.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ const {frontmatter: fm} = useData()
6868
<p><a href="./reference/architecture.html">-&gt; WARDuino architecture</a></p>
6969
<p><a href="./reference/actions/index.html">-&gt; Built-in actions</a></p>
7070
<p><a href="./reference/debug-protocol.html">-&gt; Remote debug protocol</a></p>
71+
<p><a href="./reference/mio/index.html">-&gt; MIO debugger</a></p>
7172
<p><a href="./reference/edward/index.html">-&gt; EDWARD debugger</a></p>
7273
<p><a href="./latch/index.html">-&gt; Latch testing</a></p>
7374
</article>

warduino/blog/multiverse.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@ November 14, 2024 | 4 min read
2121

2222
***
2323

24-
In this blog post, we discuss the wide applicability of the [MIO multiverse debugger]() in WARDuino.
24+
In this blog post, we discuss the wide applicability of the [MIO multiverse debugger](/reference/mio/) in WARDuino.
2525

2626
## Binary Counter with LEDs
2727

28-
2928
## Lego Mindstorms Color Dial
3029

3130
## Related posts

warduino/guide/get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cargo install warduino
3838

3939
:::
4040

41-
The language library provides access to the [primitives](/reference/primitives) of WARDuino directly from AssemblyScript or Rust.
41+
The language library provides access to the [actions](/reference/actions/) of WARDuino directly from AssemblyScript or Rust.
4242
Once you have written your program and compiled it to WebAssembly, you need to install WARDuino and the toolchains of the platform you are targeting.
4343

4444

@@ -98,7 +98,7 @@ Command-line arguments always overwrite commands in the `.config` file.
9898
## 📸 Flashing using ESP-IDF
9999

100100
::: warning Under construction
101-
Primitive support for IDF is incomplete (see [implementation status](/reference/primitives)).
101+
Primitive support for IDF is incomplete (see [implementation status](/reference/actions/)).
102102
:::
103103

104104
Before you can compile and flash with ESP-IDF, you must install and enable the toolchain. You also need to disable the watchdog timer:

warduino/latch/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ We use the framework to test three core aspects of WARDuino:
4040

4141
1. The virtual machine folllows the WebAssembly specication.
4242
2. The debugger implements the [API](/reference/debug-protocol) correctly.
43-
3. The [built-in modules](/reference/primitives) work correctly.
43+
3. The [built-in modules](/reference/actions/) work correctly.
4444

4545
The test suites written in <span style="font-variant: small-caps;">latch</span> can be found in the [GitHub repository](https://github.com/TOPLLab/WARDuino/tree/main/tests/latch).
4646

warduino/reference/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ If you are looking to just get started with programming, [the Programmer's Guide
99

1010
[-> WARDuino architecture](architecture.md)
1111

12-
[-> Built-in Primitives](primitives.md)
12+
[-> Built-in Actions](actions/index.md)
1313

1414
[-> Remote debug protocol](debug-protocol.md)
1515

1616
[-> EDWARD reference](edward/index.md)
1717

18+
[-> MIO reference](mio/index.md)
19+
1820
[-> Latch reference](/latch/index.md)
1921

2022
[-> Plugin reference](plugin.md)

warduino/reference/mio/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<script setup>
2+
import citation from '../../.vitepress/components/citation.vue'
3+
</script>
4+
5+
# MIO
6+
7+
The MIO /maː.joː/ debugger is a first of its kind multiverse debugger designed for debugging WebAssembly programs on the WARDuino virtual machine.
8+

0 commit comments

Comments
 (0)