Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix bad terminology: grapheme -> code point | Kartik K. Agaram | 2021-08-29 | 1 | -1/+1 |
| | | | | | | | | | | Unix text-mode terminals transparently support utf-8 these days, and so I treat utf-8 sequences (which I call graphemes in Mu) as fundamental. I then blindly carried over this state of affairs to bare-metal Mu, where it makes no sense. If you don't have a terminal handling font-rendering for you, fonts are most often indexed by code points and not utf-8 sequences. | ||||
* | . | Kartik K. Agaram | 2021-08-28 | 1 | -2/+1 |
| | |||||
* | shell: literal images | Kartik K. Agaram | 2021-07-28 | 1 | -5/+2 |
| | |||||
* | shell: render image from pbm data stream | Kartik K. Agaram | 2021-07-27 | 1 | -3/+3 |
| | |||||
* | . | Kartik K. Agaram | 2021-07-16 | 1 | -4/+4 |
| | |||||
* | grow a few buffers until shell/ loads | Kartik K. Agaram | 2021-05-15 | 1 | -4/+7 |
| | |||||
* | . | Kartik K. Agaram | 2021-05-15 | 1 | -20/+0 |
| | |||||
* | print call stack on abort | Kartik K. Agaram | 2021-05-15 | 1 | -2/+55 |
| | |||||
* | look up debug info from call stack on abort | Kartik K. Agaram | 2021-05-14 | 1 | -2/+68 |
| | |||||
* | parse debug info on abort | Kartik K. Agaram | 2021-05-14 | 1 | -14/+140 |
| | |||||
* | load debug info from disk on abort | Kartik K. Agaram | 2021-05-14 | 1 | -0/+58 |
| | |||||
* | dump addresses of call stack on abort | Kartik K. Agaram | 2021-05-14 | 1 | -0/+31 |
| | |||||
* | . | Kartik K. Agaram | 2021-05-14 | 1 | -0/+15 |
Move abort to SubX. We'll need to do some unsafe stuff to display the call stack here. |