about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 5686Kartik Agaram2019-09-221-1/+1
| | | | Get mulisp reflecting whatever's typed in again.
* 5685 - back tinkering with mulispKartik Agaram2019-09-221-35/+41
|
* 5684Kartik Agaram2019-09-2114-211/+216
| | | | Support function-call syntax when linkifying functions in html files.
* 5683Kartik Agaram2019-09-2051-6678/+7932
|
* 5682Kartik Agaram2019-09-201-1/+1
|
* 5681Kartik Agaram2019-09-201-0/+2
|
* 5680Kartik Agaram2019-09-203-3/+10
| | | | Include braces.subx in translation by default.
* 5679 - braces seem doneKartik Agaram2019-09-202-14/+331
|
* 5678Kartik Agaram2019-09-195-123/+123
|
* 5677Kartik Agaram2019-09-191-6/+12
|
* 5676Kartik Agaram2019-09-1916-410/+419
|
* 5675 - move helpers from subx-common into layersKartik Agaram2019-09-1948-2430/+2347
| | | | | | | | | | | | | | | | This undoes 5672 in favor of a new plan: Layers 000 - 099 are for running without syntax sugar. We use them for building syntax-sugar passes. Layers 100 and up are for running with all syntax sugar. The layers are arranged in approximate order so more phases rely on earlier layers than later ones. I plan to not use intermediate syntax sugar (just sigils without calls, or sigils and calls without braces) anywhere except in the specific passes implementing them.
* 5674Kartik Agaram2019-09-191-0/+0
|
* 5673 - standardize a few knobsKartik Agaram2019-09-1922-35/+36
|
* 5672 - move hex out of appsKartik Agaram2019-09-1918-17/+42
|
* 5671Kartik Agaram2019-09-1910-0/+0
|
* 5670Kartik Agaram2019-09-198-0/+0
|
* 5669Kartik Agaram2019-09-1915-26/+28
|
* 5668 - start reorg to permit syntax sugar in layersKartik Agaram2019-09-1924-42/+42
| | | | | | | | | | | | | | | | | | | Right now we always build the library before any apps. Apps are where our syntax sugar translators (sigils, calls, braces) live. So we can't use sugar in the standard library. New idea: move all code for SubX phases into the top-level. Perhaps we should also just build a single file rather than pipeline stages. But for now we'll build each phase by building up to some specific layer. This will simplify test_apps and move lots of one-off logic to a more standard form in test_layers. I'm also going to reorg existing layers so that we introduce each phase at a point where it mostly only gets the helpers it needs. This commit itself is just cleaning up some common strings. Using explicit names for them streamlines binaries a bit.
* 5667Kartik Agaram2019-09-191-2/+0
|