about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--html/mu_instructions.html2
-rw-r--r--mu_instructions2
2 files changed, 2 insertions, 2 deletions
diff --git a/html/mu_instructions.html b/html/mu_instructions.html
index a6b0f37c..0c66bc97 100644
--- a/html/mu_instructions.html
+++ b/html/mu_instructions.html
@@ -25,7 +25,7 @@ body { font-family: monospace; color: #000000; background-color: #c6c6c6; }
 <pre id='vimCodeElement'>
 <span class="SalientComment">## Mu's instructions and their table-driven translation</span>
 
-See <a href="http://akkartik.name/akkartik-convivial-20200315.pdf">http://akkartik.name/akkartik-convivial-20200315.pdf</a> for the complete
+See <a href="http://akkartik.name/akkartik-convivial-20200607.pdf">http://akkartik.name/akkartik-convivial-20200607.pdf</a> for the complete
 story. In brief: Mu is a statement-oriented language. Blocks consist of flat
 lists of instructions. Instructions can have inputs after the operation, and
 outputs to the left of a '<span class="SpecialChar">&lt;-</span>'. Inputs and outputs must be variables. They can't
diff --git a/mu_instructions b/mu_instructions
index 3f9810a6..a5f7d7cb 100644
--- a/mu_instructions
+++ b/mu_instructions
@@ -1,6 +1,6 @@
 ## Mu's instructions and their table-driven translation
 
-See http://akkartik.name/akkartik-convivial-20200315.pdf for the complete
+See http://akkartik.name/akkartik-convivial-20200607.pdf for the complete
 story. In brief: Mu is a statement-oriented language. Blocks consist of flat
 lists of instructions. Instructions can have inputs after the operation, and
 outputs to the left of a '<-'. Inputs and outputs must be variables. They can't
c?h=hlt&id=3f367cb9466131f95c11c24df3aac7057143587b'>^
363be37f ^
ac0e9db5 ^

dc1323e9 ^
4adb09bc ^




5f98a10c ^
4adb09bc ^



dc1323e9 ^
ac0e9db5 ^
dc1323e9 ^
363be37f ^
4071055a ^
dc1323e9 ^
363be37f ^
4071055a ^
dc1323e9 ^
363be37f ^
ac0e9db5 ^
4071055a ^
dc1323e9 ^
363be37f ^

ac0e9db5 ^
4071055a ^
dc1323e9 ^




363be37f ^
e4630643 ^
5f98a10c ^
4adb09bc ^
e4630643 ^

dc1323e9 ^
0f125d5f ^
4adb09bc ^
5f98a10c ^
4adb09bc ^



5f98a10c ^
4adb09bc ^


827898fc ^
dc1323e9 ^

4adb09bc ^



dc1323e9 ^

dc1323e9 ^

8ba8f0f6 ^
bc643692 ^
dc1323e9 ^









bc643692 ^

dc1323e9 ^









bc643692 ^

dc1323e9 ^




4071055a ^



bc643692 ^


8ba8f0f6 ^
bc643692 ^
4071055a ^
bc643692 ^
4071055a ^


4adb09bc ^
5f98a10c ^

4adb09bc ^





5f98a10c ^
4adb09bc ^

5f98a10c ^
4adb09bc ^









5f98a10c ^
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158