about summary refs log tree commit diff stats
path: root/html/subx/apps/hex.subx.html
Commit message (Collapse)AuthorAgeFilesLines
* 5081Kartik Agaram2019-04-111-56/+48
|
* 5077Kartik Agaram2019-04-101-48/+63
|
* 5033Kartik Agaram2019-03-291-3/+3
|
* 4989Kartik Agaram2019-02-251-34/+34
|
* 4982Kartik Agaram2019-02-181-1518/+1519
|
* 4967Kartik Agaram2019-02-141-16/+16
|
* 4957Kartik Agaram2019-02-111-143/+143
|
* 4932Kartik Agaram2019-01-161-10/+10
|
* 4925Kartik Agaram2019-01-141-6/+6
|
* 4920Kartik Agaram2019-01-111-336/+165
|
* 4919Kartik Agaram2019-01-101-1668/+1662
|
* 4914Kartik Agaram2019-01-071-1/+1
|
* 4899Kartik Agaram2018-12-301-25/+25
| | | | Bug in my linkify tool introduced in commit 4891.
* 4895Kartik Agaram2018-12-301-5/+5
|
* 4891Kartik Agaram2018-12-301-271/+272
| | | | | | | | | | | Couple more tweaks to html rendering: a) SubX definitions no longer link redundantly to themselves. This long-standing issue turns out to be tractable to solve for SubX files since the syntax is so simple. b) Fix links to SubX definitions in other directories. I forgot that I have to always generate tags from the directory of the file being linkified. c) Fix link colors. Before we lost all syntax highlighting for functions and Globals. Now they maintain their colors, just add an underline.
* 4890 - new html renderingsKartik Agaram2018-12-291-436/+432
| | | | | | | a) Switch to a light background. b) Linkify calls in .subx files. c) Keep all colorization in the Vim colorscheme, get rid of hacky special-cases in update_html.
* 4879Kartik Agaram2018-12-281-14/+14
|
* 4869Kartik Agaram2018-12-161-1/+1
|
* 4862Kartik Agaram2018-12-091-145/+144
|
* 4860 - stage 1 of SubX compiler in SubX is done!Kartik Agaram2018-12-091-1511/+1568
| | | | | | | | | I'm imagining 3 core stages total: 1. convert text hex bytes -> binary (✓) 2. pack and reorder operands 3. compute label addresses (Not including extras like error-checking.)
* 4855Kartik Agaram2018-12-061-1147/+1634
|
* 4849Kartik Agaram2018-12-061-1010/+1099
|
* 4848Kartik Agaram2018-12-061-904/+903
|
* 4847Kartik Agaram2018-12-061-5/+5
|
* 4846Kartik Agaram2018-12-061-820/+1082
| | | | | | | | | | | | | | Clean up a few things: a) Call scan-next-byte in hex.subx with the right number of args. Turns out tests continue to work fine if they never use the other args. b) Tear down a test for 'stop' in the right order. Not important since we have no EBP to restore. But can still be misleading. c) Have 'check-ints-equal' return nothing. Handy for it to not mess up EAX. I never use the result anyway, and the name also is imperative suggesting callers won't expect a return value.
* 4845Kartik Agaram2018-12-061-630/+627
|
* 4845Kartik Agaram2018-12-061-0/+892
Making progress on hex1 (http://web.archive.org/web/20061108010907/http://www.rano.org/bcompiler.html)