about summary refs log tree commit diff stats
path: root/subx/examples/ex1
Commit message (Collapse)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+0
|
* 5456Kartik Agaram2019-07-221-0/+0
| | | | Fix CI.
* 5454Kartik Agaram2019-07-221-0/+0
| | | | Bugfix fifteen -- on the C++ side.
* 5404 - subx/examples/ex1 now translatingKartik Agaram2019-07-151-0/+0
| | | | | | | | | | | | | | | | | | | The result isn't an identical binary to before, and it segfaults when run. But it's bugfix seven. A couple of places where we make .subx files a little more strict: a) All .subx files must define a data segment. Even if they have no data. b) All .subx files must define an `Entry` label for the binary to start at. Earlier we used to default to the start of the code label. That's not too hard to add; we'd just need to: i) rename `get` to `get-or-abort` ii) clone a third variant of `get-or-insert` called `get` that returns null if the key is not found. iii) use `get` rather than `get-or-abort` when looking up the `Entry` label.
* 4661Kartik Agaram2018-10-041-0/+0
| | | | | Make segment management a little more consistent between initial segments and add-on segments (using `mmap`).
* 4529 - move examples to a sub-directoryKartik Agaram2018-09-011-0/+0
mmitter Kartik Agaram <vc@akkartik.com> 2020-06-30 14:54:30 -0700 6602' href='/akkartik/mu/commit/html/apps/ex2.mu.html?h=hlt&id=2655a4a91d1d2e98cc9ab9c54e70d4eb49c735d6'>2655a4a9 ^
c9bda4d1 ^

783eb31a ^
2655a4a9 ^

c9bda4d1 ^




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