about summary refs log tree commit diff stats
path: root/mu_summary
Commit message (Collapse)AuthorAgeFilesLines
* 6059Kartik Agaram2020-02-271-0/+5
|
* 6041 - array indexing starting to workKartik Agaram2020-02-211-0/+6
| | | | | | | | | | | | | And we're using it now in factorial.mu! In the process I had to fix a couple of bugs in pointer dereferencing. There are still some limitations: a) Indexing by a literal doesn't work yet. b) Only arrays of ints supported so far. Looking ahead, I'm not sure how I can support indexing arrays by non-literals (variables in registers) unless the element size is a power of 2.
* 6039Kartik Agaram2020-02-211-0/+4
|
* 6019 - finish supporting all branch primitivesKartik Agaram2020-02-181-2/+3
| | | | | | | | I'd been thinking I didn't need unconditional `break` instructions, but I just realized that non-local unconditional breaks have a use. Stop over-thinking this, just support everything. The code is quite duplicated.
* 5969Kartik Agaram2020-02-011-27/+26
|
* 5968Kartik Agaram2020-02-011-0/+192