about summary refs log tree commit diff stats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* 6207 - tweaks while creating a videoKartik Agaram2020-04-191-3/+3
| | | | https://futureofcoding.org/two-minute-week
* 6123 - runtime helper for initializing arraysKartik Agaram2020-03-111-0/+636
| | | | | | | | | | | | | I built this in 3 phases: a) create a helper in the bootstrap VM to render the state of the stack. b) interactively arrive at the right function (tools/stack_array.subx) c) pull the final solution into the standard library (093stack_allocate.subx) As the final layer says, this may not be the fastest approach for most (or indeed any) Mu programs. Perhaps it's better on balance for the compiler to just emit n/4 `push` instructions. (I'm sure this solution can be optimized further.)
* 6003Kartik Agaram2020-02-091-4/+15
|
* 6002Kartik Agaram2020-02-091-3/+4
|
* 5910Kartik Agaram2020-01-201-2/+1
| | | | | Trace browser: Don't let the background color get too light, and cycle back to darker shades so I'm not squinting at low depths.
* 5900Kartik Agaram2020-01-191-0/+16
|
* 5899Kartik Agaram2020-01-192-4/+11
|
* 5897 - rename comparison instructionsKartik Agaram2020-01-161-16/+0
| | | | | | | Signed and unsigned don't quite capture the essence of what the different combinations of x86 flags are doing for SubX. The crucial distinction is that one set of comparison operators is for integers and the second is for addresses.
* 5891Kartik Agaram2020-01-141-0/+20
|
* 5884Kartik Agaram2020-01-121-0/+7
|
* 5881Kartik Agaram2020-01-101-7/+0
|
* 5875Kartik Agaram2020-01-021-7/+7
|
* 5870Kartik Agaram2020-01-021-0/+3
|
* 5868Kartik Agaram2020-01-021-0/+0
| | | | | Follow stupid GNU convention, because why not: https://www.gnu.org/prep/standards/html_node/Releases.html
* 5859Kartik Agaram2020-01-012-0/+67
| | | | Move script to create a Linux-based boot image into a sub-directory.
* 5858Kartik Agaram2020-01-0195-0/+32627
| | | | | | Move script to create a Soso boot image into a sub-directory. I'm trying to streamline newcomer attention to just a couple of use cases.
* 5837 - better colors for trace browserKartik Agaram2019-12-281-10/+25
|
* 5819Kartik Agaram2019-12-221-1/+1
| | | | Minor tweaks to stop wasting horizontal space in the trace.
* 5816 - browse_trace bug fixedKartik Agaram2019-12-211-0/+1
|
* 5815Kartik Agaram2019-12-211-4/+4
|
* 5814Kartik Agaram2019-12-211-25/+25
|
* 5813Kartik Agaram2019-12-211-2/+1
|
* 5812 - debugging an ancient niggle in browse_traceKartik Agaram2019-12-211-6/+5
| | | | | | | | The problem: when I hit 'G' to go to the bottom of the trace, if the bottom is visible on screen, the screen scrolls so the bottom of the trace is the bottom-most line on screen. But the cursor moves to where the trace used to end rather than the new location of the bottom of the trace (the bottom of the screen).
* 5805Kartik Agaram2019-12-081-0/+12
|
* 5801 - move `tangle` to `tools/` dirKartik Agaram2019-12-072-0/+1189
|
* 5800 - move `browse_trace` to `tools/` dirKartik Agaram2019-12-0712-0/+1927
|
* 5799 - move html-generation to `tools/` directoryKartik Agaram2019-12-073-1/+344
|
* 5797 - move `enumerate/` to `tools/` directoryKartik Agaram2019-12-072-0/+34
|
* 5796 - move treeshake to a new tools/ directoryKartik Agaram2019-12-075-0/+239
00 committer William Wennerström <william@wstrm.dev> 2020-11-16 21:58:09 +0100 Run make format on rebase' href='/danisanti/profani-tty/commit/src/command/cmd_funcs.h?id=4711fc62a3d691d35400bc7316f9026c64227d51'>4711fc62 ^
35206453 ^
4711fc62 ^












3ba38eaf ^
4711fc62 ^















d7848e38 ^


19c5925c ^
44fc3f05 ^
8be8f75b ^
09f5cadf ^
06482fda ^
d9366a26 ^
03334664 ^
e57fa163 ^
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253