This commit is contained in:
Kartik Agaram 2020-07-11 09:10:57 -07:00
parent efe641a030
commit 7b5ad6028c
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ To translate Mu programs through these layers into tiny zero-dependency ELF
binaries for Linux, use `translate_mu`.
Mu programs can be run in emulated mode to emit traces, which permit time-travel
debugging. ([More details.](debugging.md))
debugging. ([More details.](subx_debugging.md))
### incomplete tools
@ -154,7 +154,7 @@ If you're still reading, here are some more things to check out:
- [How to get your text editor set up for Mu and SubX programs.](editor.md)
- [Some tips for debugging Mu and SubX programs.](debugging.md)
- [Some tips for debugging SubX programs.](subx_debugging.md)
- [Shared vocabulary of data types and functions shared by Mu programs.](vocabulary.md)
Mu programs can transparently call low-level functions written in SubX.

View File

@ -1,4 +1,4 @@
## A few hints for debugging
## A few hints for debugging SubX programs
Writing programs in SubX is surprisingly pleasant and addictive. Reading
programs is a work in progress, and hopefully the extensive unit tests help.