about summary refs log tree commit diff stats
path: root/html
Commit message (Collapse)AuthorAgeFilesLines
* 4928Kartik Agaram2019-01-141-425/+475
|
* 4927Kartik Agaram2019-01-141-27/+160
|
* 4926Kartik Agaram2019-01-141-219/+285
|
* 4925Kartik Agaram2019-01-142-456/+611
|
* 4923Kartik Agaram2019-01-122-282/+283
| | | | | We want slice-equal? for length-prefixed strings, not null-terminated "kernel" strings.
* 4922Kartik Agaram2019-01-111-6/+7
|
* 4921Kartik Agaram2019-01-1112-1118/+1201
|
* 4920Kartik Agaram2019-01-113-337/+690
|
* 4919Kartik Agaram2019-01-1011-2222/+2739
|
* 4914Kartik Agaram2019-01-0715-444/+1575
|
* 4901Kartik Agaram2019-01-033-0/+0
|
* 4900Kartik Agaram2018-12-301-353/+347
| | | | | | | | | | | Finally really fix the CI failure of commit 4894. This is a remainder to forget my knowledge of stack addresses in the SubX VM when writing SubX programs. Otherwise my programs will work in the VM but not natively. The only assumptions a SubX program should make about its segment addresses are what's encoded in the ELF binary. Thanks to https://en.wikipedia.org/wiki/Address_space_layout_randomization, it can't know anything else.
* 4899Kartik Agaram2018-12-3030-156/+156
| | | | Bug in my linkify tool introduced in commit 4891.
* 4898Kartik Agaram2018-12-302-2/+2
|
* 4897Kartik Agaram2018-12-304-400/+564
|
* 4895Kartik Agaram2018-12-3027-48/+48
|
* 4892Kartik Agaram2018-12-301-12/+15
|
* 4891Kartik Agaram2018-12-30183-341/+524
| | | | | | | | | | | Couple more tweaks to html rendering: a) SubX definitions no longer link redundantly to themselves. This long-standing issue turns out to be tractable to solve for SubX files since the syntax is so simple. b) Fix links to SubX definitions in other directories. I forgot that I have to always generate tags from the directory of the file being linkified. c) Fix link colors. Before we lost all syntax highlighting for functions and Globals. Now they maintain their colors, just add an underline.
* 4890 - new html renderingsKartik Agaram2018-12-29187-5628/+5327
| | | | | | | a) Switch to a light background. b) Linkify calls in .subx files. c) Keep all colorization in the Vim colorscheme, get rid of hacky special-cases in update_html.
* 4880Kartik Agaram2018-12-2823-42/+40
|
* 4879Kartik Agaram2018-12-286-32/+32
|
* 4878Kartik Agaram2018-12-271-1/+1
|
* 4877Kartik Agaram2018-12-271-2/+2
|
* 4869Kartik Agaram2018-12-1642-1210/+1195
|
* 4865Kartik Agaram2018-12-101-14/+14
| | | | More mnemonic register usage in write-stream.
* 4864Kartik Agaram2018-12-101-213/+266
| | | | Our first buffer overflow!
* 4863Kartik Agaram2018-12-102-2/+2
|
* 4862Kartik Agaram2018-12-091-145/+144
|
* 4860 - stage 1 of SubX compiler in SubX is done!Kartik Agaram2018-12-091-1511/+1568
| | | | | | | | | I'm imagining 3 core stages total: 1. convert text hex bytes -> binary (✓) 2. pack and reorder operands 3. compute label addresses (Not including extras like error-checking.)
* 4858 - debugging tipsKartik Agaram2018-12-083-0/+0
|
* 4855Kartik Agaram2018-12-061-1147/+1634
|
* 4849Kartik Agaram2018-12-061-1010/+1099
|
* 4848Kartik Agaram2018-12-061-904/+903
|
* 4847Kartik Agaram2018-12-0611-23/+23
|
* 4846Kartik Agaram2018-12-063-883/+1147
| | | | | | | | | | | | | | Clean up a few things: a) Call scan-next-byte in hex.subx with the right number of args. Turns out tests continue to work fine if they never use the other args. b) Tear down a test for 'stop' in the right order. Not important since we have no EBP to restore. But can still be misleading. c) Have 'check-ints-equal' return nothing. Handy for it to not mess up EAX. I never use the result anyway, and the name also is imperative suggesting callers won't expect a return value.
* 4845Kartik Agaram2018-12-061-630/+627
|
* 4845Kartik Agaram2018-12-061-0/+892
| | | | Making progress on hex1 (http://web.archive.org/web/20061108010907/http://www.rano.org/bcompiler.html)
* 4844Kartik Agaram2018-12-062-4/+4
|
* 4842Kartik Agaram2018-12-053-484/+500
|
* 4841Kartik Agaram2018-12-041-0/+161
| | | | New helper: print an error message, then a numeric byte, then abort.
* 4840Kartik Agaram2018-12-044-16/+306
| | | | New helper: printing a string to a buffered file.
* 4839Kartik Agaram2018-12-041-2/+2
|
* 4838Kartik Agaram2018-12-041-10/+10
| | | | Better to use EDI as a mnemonic for 'destination'.
* 4837Kartik Agaram2018-12-042-2/+2
| | | | Let's standardize to use opcode 39 rather than 3b by default.
* 4836Kartik Agaram2018-12-041-1/+1
|
* 4835Kartik Agaram2018-12-041-1/+1
|
* 4834Kartik Agaram2018-12-041-73/+64
| | | | Fix CI since 4827.
* 4832Kartik Agaram2018-12-0411-1781/+1800
| | | | | | Let's start adding ':end' labels in all functions, just because it helps us visualize where function calls end in traces, thanks to the '--map' commandline argument.
* 4831Kartik Agaram2018-12-042-4/+8
|
* 4830Kartik Agaram2018-12-038-1109/+1632
| | | | | | New helper: printing a byte in textual (hex) form. This required adding instructions for bitwise shift operations.
2012-11-18 00:25:08 +0000 committer James Booth <boothj5@gmail.com> 2012-11-18 00:25:08 +0000 Added command parser for commands accepting free text' href='/danisanti/profani-tty/commit/tests/test_parser.c?id=191ab83c9b888ebd5f60afc256833c8062629e05'>191ab83c ^
c3e37592 ^


191ab83c ^


a2726b6a ^
824eaa16 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
824eaa16 ^
c3e37592 ^



824eaa16 ^


a2726b6a ^
824eaa16 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
824eaa16 ^
c3e37592 ^




824eaa16 ^


a2726b6a ^
824eaa16 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
824eaa16 ^
c3e37592 ^





824eaa16 ^


a2726b6a ^
824eaa16 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
824eaa16 ^
c3e37592 ^





824eaa16 ^


a2726b6a ^
191ab83c ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
191ab83c ^
c3e37592 ^



191ab83c ^


a2726b6a ^
191ab83c ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
191ab83c ^
c3e37592 ^




191ab83c ^


a2726b6a ^
191ab83c ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
191ab83c ^
c3e37592 ^





191ab83c ^


a2726b6a ^
312d362e ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
312d362e ^
c3e37592 ^



312d362e ^


a2726b6a ^
312d362e ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
312d362e ^
c3e37592 ^



312d362e ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^




bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^




bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^




bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^




bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^





bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^





bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^





bae9bde4 ^


a2726b6a ^
bae9bde4 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
bae9bde4 ^
c3e37592 ^





bae9bde4 ^
e7478d8c ^

a2726b6a ^
8137efbf ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
8137efbf ^
c3e37592 ^




8137efbf ^


a2726b6a ^
f2509b07 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
f2509b07 ^
c3e37592 ^




9e6bc99d ^

f2509b07 ^


a2726b6a ^
f2509b07 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
f2509b07 ^
c3e37592 ^




9e6bc99d ^

f2509b07 ^


a2726b6a ^
f2509b07 ^
a2726b6a ^
c3e37592 ^
a2726b6a ^
f2509b07 ^
c3e37592 ^




6776e396 ^

f2509b07 ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^
e7478d8c ^

4bb38ac0 ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^

e7478d8c ^
4bb38ac0 ^
4f11140b ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^

e7478d8c ^
4bb38ac0 ^
4f11140b ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^

e7478d8c ^
4bb38ac0 ^
4f11140b ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^

e7478d8c ^
4bb38ac0 ^
4f11140b ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^

e7478d8c ^
4bb38ac0 ^
4f11140b ^
e7478d8c ^


a2726b6a ^
e7478d8c ^
a2726b6a ^

e7478d8c ^
4bb38ac0 ^
4f11140b ^
8d77930e ^


a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^








a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^







a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^









a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^







a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^











a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^







a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^













a2726b6a ^
8d77930e ^
a2726b6a ^

8d77930e ^


a2726b6a ^
8d77930e ^




24197370 ^


a2726b6a ^
24197370 ^
a2726b6a ^

24197370 ^


a2726b6a ^
24197370 ^




4f11140b ^
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674