about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* 5736Kartik Agaram2019-11-101-47/+69
| | | | | | | | Rethink how vars are organized. We need separate aggregates for vars in the definition stack, defined in function headers, and used by statement operands. So now vars have no 'next' fields themselves. The definition stack will be a real stack, while the function headers and statement operands will have separate 'next' fields.
* 5735Kartik Agaram2019-11-091-17/+44
| | | | Switching gears to emitting function calls. The function name is working now.
* 5734Kartik Agaram2019-11-091-13/+49
| | | | No, we need to handle primitives and calls separately.
* 5733Kartik Agaram2019-11-091-11/+60
|
* 5732Kartik Agaram2019-11-092-1056/+1002
|
* 5731Kartik Agaram2019-11-092-921/+899
|
* 5730Kartik Agaram2019-11-091-606/+1028
|
* 5729Kartik Agaram2019-11-091-16/+155
| | | | Just a random snapshot of mu.subx. The two new tests aren't passing yet.
* 5728Kartik Agaram2019-11-081-7/+153
|
* 5727Kartik Agaram2019-11-081-6/+157
|
* 5726Kartik Agaram2019-11-032-12/+12
|
* 5725Kartik Agaram2019-10-304-388/+398
|
* 5724Kartik Agaram2019-10-292-536/+538
|
* 5723Kartik Agaram2019-10-292-1/+667
|
* 5722Kartik Agaram2019-10-291-0/+47
| | | | Already http://akkartik.name/post/mu-2019-2 is out of date.
* 5721Kartik Agaram2019-10-291-6/+11
|
* 5720 - start of Mu's eponymous level-2 languageKartik Agaram2019-10-291-0/+565
| | | | http://akkartik.name/post/mu-2019-2
* 5719Kartik Agaram2019-10-291-1/+1
|
* 5718Kartik Agaram2019-10-291-1/+1
|
* 5717Kartik Agaram2019-10-272-2/+2
|
* 5716Kartik Agaram2019-10-2630-19962/+19639
|
* 5715Kartik Agaram2019-10-2610-44/+39
| | | | | | | Clean up pseudocode to match planned syntax for the type- and memory-safe level-2 Mu language. http://akkartik.name/post/mu-2019-2 is already out of date.
* 5714Kartik Agaram2019-10-2537-771/+379
| | | | Replace calculations of constants with labels.
* 5713Kartik Agaram2019-10-231-2/+2
|
* Merge pull request #41 from tekknolagi/mb-rewrite-loopKartik Agaram2019-10-221-3/+2
|\ | | | | Simplify loop
| * Simplify loopMax Bernstein2019-10-221-3/+2
| |
* | Merge pull request #40 from tekknolagi/masterKartik Agaram2019-10-221-1/+3
|\ \ | |/ |/| Raise an error if too few arguments are provided
| * Raise an error if too few arguments are providedMax Bernstein2019-10-221-1/+3
|/ | | | This is a notably better user experience than an assert failing.
* 5708Kartik Agaram2019-10-192-2/+2
|
* 5707Kartik Agaram2019-10-196-266/+290
|
* 5706 - example at different levels of syntax sugarKartik Agaram2019-10-196-0/+740
| | | | | Thanks Mateusz Czapliński for the feedback: https://lobste.rs/s/xtxlec/mu_minimal_hobbyist_computing_stack#c_1mzq94
* 5705Kartik Agaram2019-10-191-5/+9
|
* 5704Kartik Agaram2019-10-193-71/+93
| | | | Minor tweaks based on feedback from Max Bernstein.
* 5703Kartik Agaram2019-10-182-10/+12
| | | | | | | Fix https://github.com/akkartik/mu/issues/38: gen_soso_iso on Arch Linux. Also deemphasize bootable disk images in the Readme since that side's less mature.
* 5702 - fix a typo in online helpKartik Agaram2019-10-182-2/+2
| | | | This commit fixes #37. Thanks Thomas Munoz!
* 5701Kartik Agaram2019-10-1757-1404/+1613
|
* 5700Kartik Agaram2019-10-1732-55/+55
|
* 5699Kartik Agaram2019-10-171-5/+7
|
* 5698Kartik Agaram2019-10-1557-886/+886
| | | | Thanks Andrew Owen for reporting this typo.
* 5697Kartik Agaram2019-10-131-1/+1
| | | | Feedback at https://news.ycombinator.com/item?id=21242190#21242784
* 5696Kartik Agaram2019-10-033-2/+2
|
* 5695Kartik Agaram2019-10-031-1/+1
|
* 5694Kartik Agaram2019-09-281-1/+2
|
* 5693Kartik Agaram2019-09-272-15/+11
| | | | Undo previous commit.
* 5692 - attempt at never leaving kernel modeKartik Agaram2019-09-272-11/+15
| | | | Doesn't work. Kernel gets kicked back to the Grub prompt(!)
* 5691Kartik Agaram2019-09-271-15/+8
|
* 5690Kartik Agaram2019-09-271-16/+15
|
* 5689Kartik Agaram2019-09-271-35/+37
|
* 5688Kartik Agaram2019-09-231-1/+1
|
* 5687Kartik Agaram2019-09-2315-274/+413
| | | | | | | | | Move stack operations to a layer of their own. It was some short-term pain to take out the syntax sugar from it, but we need access to this layer from braces, which can't depend on sugar since it's part of sugar. Just simpler to keep one clear line and not have to build sometimes with some sugar but not others.