about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-29 07:37:09 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-29 07:37:09 -0700
commitbc54fa195a006bfd62a81f12ff2cc8433dde52f5 (patch)
tree21f59e0a01af7bbc71e89ab855800d795055399e
parent81037d7bd82b246e6eddda7171001ea1ce8414b1 (diff)
downloadmu-bc54fa195a006bfd62a81f12ff2cc8433dde52f5.tar.gz
.
-rw-r--r--tutorial/index.md19
1 files changed, 10 insertions, 9 deletions
diff --git a/tutorial/index.md b/tutorial/index.md
index 8e605d88..745737a6 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -7,20 +7,21 @@ instruction set. Everything easy to change to your needs
 ([habitable](http://akkartik.name/post/habitability)), everything easy to
 check up on ([auditable](http://akkartik.name/post/neighborhood)).
 
-This page is a guided tour through Mu's Readme and reference documentation.
-We'll start out really slow and gradually accelerate as we build up skills. By
-the end of it all, I hope you'll be able to program your processor to run some
-small graphical programs. The programs will only use a small subset of your
-computer's capabilities; there's still a lot I don't know and therefore cannot
-teach. However, the programs will run on a _real_ processor without needing
-any other intermediary software.
+This page is a guided tour through [Mu's Readme](https://github.com/akkartik/mu)
+and reference documentation. We'll start out really slow and gradually
+accelerate as we build up skills. By the end of it all, I hope you'll be able
+to program your processor to run some small graphical programs. The programs
+will only use a small subset of your computer's capabilities; there's still a
+lot I don't know and therefore cannot teach. However, the programs will run on
+a _real_ processor without needing any other intermediary software.
 
 _Prerequisites_
 
 You will need:
 
-* A computer with an x86 processor running Linux. We're going to slowly escape
-  Linux, but we'll need it at the start. Mu works on other platforms, but be
+* A computer with an x86 processor running Linux. Mu is designed to eventually
+  escape Linux, but still needs some _host_ environment for now. Other
+  platforms will also do (BSD, Mac OS, Windows Subsystem for Linux), but be
   warned that things will be _much_ (~20x) slower.
 * Some fluency in typing commands at the terminal and interpreting their
   output.
='author Kartik K. Agaram <vc@akkartik.com> 2023-11-18 11:30:57 -0800 committer Kartik K. Agaram <vc@akkartik.com> 2023-11-18 11:32:01 -0800 audit all asserts' href='/akkartik/view.love/commit/source_undo.lua?id=007b965b11b681550ee2e2244a2f53e64e88697d'>007b965 ^
e1c5a42 ^




e1c5a42 ^















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99