about summary refs log tree commit diff stats
path: root/317abort.subx
Commit message (Collapse)AuthorAgeFilesLines
* fix bad terminology: grapheme -> code pointKartik K. Agaram2021-08-291-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. Agaram2021-08-281-2/+1
|
* shell: literal imagesKartik K. Agaram2021-07-281-5/+2
|
* shell: render image from pbm data streamKartik K. Agaram2021-07-271-3/+3
|
* .Kartik K. Agaram2021-07-161-4/+4
|
* grow a few buffers until shell/ loadsKartik K. Agaram2021-05-151-4/+7
|
* .Kartik K. Agaram2021-05-151-20/+0
|
* print call stack on abortKartik K. Agaram2021-05-151-2/+55
|
* look up debug info from call stack on abortKartik K. Agaram2021-05-141-2/+68
|
* parse debug info on abortKartik K. Agaram2021-05-141-14/+140
|
* load debug info from disk on abortKartik K. Agaram2021-05-141-0/+58
|
* dump addresses of call stack on abortKartik K. Agaram2021-05-141-0/+31
|
* .Kartik K. Agaram2021-05-141-0/+15
Move abort to SubX. We'll need to do some unsafe stuff to display the call stack here.