about summary refs log tree commit diff stats
path: root/subx/examples/ex1
Commit message (Collapse)AuthorAgeFilesLines
* 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