~vdupras/tumbleforth

f7b794df9529d9ce19196897a5e8f32bb32e0110 — Virgil Dupras 10 months ago 8c891cb
Fix broken links
2 files changed, 6 insertions(+), 7 deletions(-)

M 01-duskcc/09-dusktillc.md
M 01-duskcc/10-beast.md
M 01-duskcc/09-dusktillc.md => 01-duskcc/09-dusktillc.md +3 -3
@@ 16,7 16,7 @@ Printing a literal in hexadecimal is done with the `.x` word.
4. No support for decimals.
5. `DO..LOOP` changes to `for2..next` because Dusk has [fancy support for
iterators][iter].
6. `VARIABLE` changes to `value` with what Dusk calls [“to” semantics][usage].
6. `VARIABLE` changes to `value` with what Dusk calls [“to” semantics][todoc].
7. The [text editor][ged] is completely different.

You can of course read [Dusk’s documentation][duskdoc] which will tell you all


@@ 331,8 331,8 @@ the operands is always “direct”. `reg` is the one.
[prev]: 08-immediate.html
[nextup]: 10-beast.html
[dusk]: http://duskos.org/
[iter]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/iter.txt
[usage]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/usage.txt
[iter]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/usage/iter.txt
[todoc]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/usage/bind.txt
[ged]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/text/ged.txt
[duskdoc]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/index.txt
[hal]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/hal.txt

M 01-duskcc/10-beast.md => 01-duskcc/10-beast.md +3 -4
@@ 27,7 27,7 @@ subfolder in the same way as `make pcrun`.

## Strings

Our tokenizer will yield tokens as [strings][usage]. Strings are a series of
Our tokenizer will yield tokens as [strings][litdoc]. Strings are a series of
contiguous bytes in memory preceded by a "length" field, which is one byte in
size. When we refer to a string, we refer to the address of the "length" field.



@@ 313,10 313,9 @@ foo.c. Because our tokenizer is minimal, we can afford to stay simple.

[prev]: 09-dusktillc.html
[upnext]: 11-eye.html
[usage]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/usage.txt
[struct]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/struct.txt
[litdoc]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/usage/lit.txt
[struct]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/usage/ns.txt
[io]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/sys/io.txt
[file]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/sys/file.txt
[alloc]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/lib/alloc.txt
[scratch]: https://git.sr.ht/~vdupras/duskos/tree/master/item/fs/doc/lib/scratch.txt