about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* 183 - global variablesKartik K. Agaram2014-10-302-4/+19
| | | | If an operand has metadata 'global', it isn't offset off default-scope.
* 182Kartik K. Agaram2014-10-302-1/+24
|
* 181 - fix inconsistent metadataKartik K. Agaram2014-10-303-14/+15
| | | | | We have cases where 'type' is stored in memory, so it can't be a literal type like 'offset'.
* 180Kartik K. Agaram2014-10-302-1/+16
|
* 179Kartik K. Agaram2014-10-302-3/+18
|
* 178Kartik K. Agaram2014-10-301-2/+2
|
* 177 - more robust 'die'Kartik K. Agaram2014-10-301-5/+12
|
* 176Kartik K. Agaram2014-10-291-3/+3
|
* 175 - have 'new' write array size automaticallyKartik K. Agaram2014-10-292-3/+2
|
* 174 - experiment: communicating errors between routinesKartik K. Agaram2014-10-292-11/+31
| | | | Who does cleanup? That comes later, with custodians.
* 173Kartik K. Agaram2014-10-291-2/+2
|
* 172 - save completed routines for better white-box testingKartik K. Agaram2014-10-291-6/+8
|
* 171 - rename 'context' to 'routine'Kartik K. Agaram2014-10-291-63/+64
| | | | | Given goroutines, the new name conveys a more accurate connotation of concurrency considerations.
* 170 - stack frame supportKartik K. Agaram2014-10-292-15/+39
| | | | | When the current context has a 'default-scope', directly-addressed memory offsets off of it.
* 169Kartik K. Agaram2014-10-291-11/+10
|
* 168Kartik K. Agaram2014-10-291-1/+4
|
* 167Kartik K. Agaram2014-10-291-37/+38
| | | | Make context a global.
* 166Kartik K. Agaram2014-10-291-3/+3
|
* 165Kartik K. Agaram2014-10-291-10/+10
|
* 164 - start of a simple tangling systemKartik K. Agaram2014-10-292-0/+31
|
* 163 - start of a simple assemblerKartik K. Agaram2014-10-292-2/+45
|
* 162Kartik K. Agaram2014-10-291-4/+4
|
* 161Kartik K. Agaram2014-10-291-2/+2
|
* 160 - fix stale editor testKartik K. Agaram2014-10-283-43/+24
|
* 159 - putting types table in test file was a bad ideaKartik K. Agaram2014-10-282-38/+41
| | | | We could no longer just create .mu files and run them on the command line.
* 158 - stop supporting non-numeric addressesKartik K. Agaram2014-10-281-36/+40
| | | | | That was relying on the underlying host lisp. Next we'll build a simple assembler to get back descriptive variable names.
* 157 - 'new-list' handles integersKartik K. Agaram2014-10-252-11/+55
|
* 156 - new primitive for lifting into tagged-types: 'save-type'Kartik K. Agaram2014-10-242-1/+19
|
* 155Kartik K. Agaram2014-10-241-2/+5
|
* 154 - current stretch goal is to parse the horizon fileKartik K. Agaram2014-10-241-0/+19
|
* 153Kartik K. Agaram2014-10-243-276/+333
|
* 152Kartik K. Agaram2014-10-181-70/+70
|
* 151Kartik K. Agaram2014-10-182-485/+492
|
* 150Kartik K. Agaram2014-10-162-0/+1356
|
* 149 - get rid of 'type' and 'otype' in favor of tagged types for dispatchKartik K. Agaram2014-10-142-71/+61
|
* 148 - better idiom for generic functionsKartik K. Agaram2014-10-142-93/+123
|
* 147Kartik K. Agaram2014-10-142-44/+44
|
* 146Kartik K. Agaram2014-10-141-1/+1
|
* 145 - delete random programsKartik K. Agaram2014-10-145-48/+1
| | | | | | | | | They need a type table to work, but I'm keeping type tables next to the tests. Everything needs to be a test from now on. (But first some fixes to the terminal primitives.)
* 144Kartik K. Agaram2014-10-142-5/+17
|
* 143Kartik K. Agaram2014-10-121-7/+7
|
* 142 - helper for listsKartik K. Agaram2014-10-122-1/+8
| | | | | Amazing how easy it was to just dump the trace and diff, compared to my old approach of adding new traces and rerunning.
* 141 - list nodes using tagged-valueKartik K. Agaram2014-10-121-1/+46
|
* 140Kartik K. Agaram2014-10-122-4/+35
|
* 139Kartik K. Agaram2014-10-121-1/+14
|
* 138Kartik K. Agaram2014-10-121-5/+3
| | | | | | | | Current todo stack: trace-based assert new-tagged-value - assert that first arg has size 1 test constructing list manually new-list
* 137Kartik K. Agaram2014-10-122-5/+40
|
* 136 - log memory in consistent orderKartik K. Agaram2014-10-121-1/+1
| | | | | This is super slow. Maybe I should keep it commented out until we need it? Open to doing that in future.
* 135Kartik K. Agaram2014-10-121-0/+16
|
* 134 - 'arg' explicitly tells us if an arg was foundKartik K. Agaram2014-10-122-1/+17
| | | | | | Return values can be ignored in mu, in the grand traditions of C programming. Though library writers can impose their conservatism on callers by returning the error condition first.