Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 6430 | Kartik Agaram | 2020-05-29 | 1 | -4/+3 |
| | | | | | Perhaps the lack of safety just forces us to make smaller functions, like Forth. | ||||
* | 6429 | Kartik Agaram | 2020-05-29 | 1 | -0/+35 |
| | | | | | Baby steps. I managed to mess up even this tiny refactoring of print-file.mu. Wish output registers were already checked in calls. | ||||
* | 6428 | Kartik Agaram | 2020-05-29 | 1 | -1/+1 |
| | |||||
* | 6427 | Kartik Agaram | 2020-05-29 | 1 | -7/+13 |
| | |||||
* | 6426 | Kartik Agaram | 2020-05-28 | 2 | -32/+44 |
| | |||||
* | 6425 | Kartik Agaram | 2020-05-28 | 5 | -7654/+7917 |
| | |||||
* | 6424 | Kartik Agaram | 2020-05-28 | 3 | -1/+2 |
| | |||||
* | 6423 - done with sample app 'print-file' | Kartik Agaram | 2020-05-28 | 3 | -6/+35 |
| | | | | | | | | | | | Observations: - the orchestration from 'in' to 'addr-in' to '_in-addr' to 'in-addr' is quite painful. Once to turn a handle into its address, once to turn a handle into the address of its payload, and a third time to switch a variable out of the overloaded 'eax' variable to make room for read-byte-buffered. - I'm starting to use SubX as an escape hatch for features missing in Mu: - access to syscalls (which pass args in registers) - access to global variables | ||||
* | 6422 - size-of for handles | Kartik Agaram | 2020-05-28 | 6 | -6/+26 |
| | |||||
* | 6421 | Kartik Agaram | 2020-05-28 | 1 | -0/+0 |
| | |||||
* | 6420 | Kartik Agaram | 2020-05-28 | 1 | -2/+5 |
| | | | | | | | Starting to feel the need for more static checks, like when I must use a register, or when a variable has been clobbered. The good news: I thought I'd found a bug in apps/mu, but I hadn't. | ||||
* | 6419 - new primitive for opening files | Kartik Agaram | 2020-05-28 | 3 | -1/+59 |
| | |||||
* | 6418 | Kartik Agaram | 2020-05-28 | 1 | -2/+14 |
| | |||||
* | 6417 | Kartik Agaram | 2020-05-28 | 1 | -0/+8 |
| | |||||
* | 6416 | Kartik Agaram | 2020-05-28 | 1 | -2/+8 |
| | |||||
* | 6415 | Kartik Agaram | 2020-05-27 | 2 | -7/+16 |
| | |||||
* | 6414 | Kartik Agaram | 2020-05-27 | 2 | -0/+629 |
| | |||||
* | 6413 | Kartik Agaram | 2020-05-27 | 1 | -0/+0 |
| | | | | Fix CI. | ||||
* | 6412 | Kartik Agaram | 2020-05-27 | 1 | -1/+1 |
| | |||||
* | 6410 | Kartik Agaram | 2020-05-27 | 1 | -0/+91 |
| | |||||
* | 6410 - primitives for raw keyboard input | Kartik Agaram | 2020-05-27 | 2 | -0/+205 |
| | |||||
* | 6409 - primitives for text-mode UIs | Kartik Agaram | 2020-05-27 | 30 | -1/+335 |
| | |||||
* | 6408 | Kartik Agaram | 2020-05-27 | 2 | -2/+4 |
| | |||||
* | 6407 | Kartik Agaram | 2020-05-25 | 1 | -9/+10 |
| | |||||
* | 6406 - primitive 'copy-handle' | Kartik Agaram | 2020-05-25 | 14 | -0/+23 |
| | |||||
* | 6405 | Kartik Agaram | 2020-05-25 | 2 | -2/+2 |
| | |||||
* | 6404 | Kartik Agaram | 2020-05-25 | 1 | -10/+39 |
| | |||||
* | 6403 | Kartik Agaram | 2020-05-24 | 2 | -1/+1 |
| | |||||
* | 6402 | Kartik Agaram | 2020-05-24 | 1 | -1/+1 |
| | |||||
* | 6401 - have scripts follow the Unix way | Kartik Agaram | 2020-05-24 | 2 | -20/+0 |
| | | | | | | | Stay silent if all is well. I don't agree with this, but it's not like the messages I was printing out were particularly useful. | ||||
* | 6400 | Kartik Agaram | 2020-05-24 | 2 | -1/+9 |
| | |||||
* | 6399 - make mu.vim work better out of the box | Kartik Agaram | 2020-05-24 | 1 | -2/+6 |
| | | | | | | Adding some more colors will improve the experience, but the choices depend on colorscheme, and first impressions should at least not seem to have degraded things. | ||||
* | 6398 | Kartik Agaram | 2020-05-24 | 2 | -4/+4 |
| | |||||
* | 6397 | Kartik Agaram | 2020-05-24 | 28 | -1336/+1336 |
| | | | | | Drop '---' section boundaries from filenames. I noticed them confusing tab-completion for certain advanced shell setups. | ||||
* | 6396 | Kartik Agaram | 2020-05-24 | 5 | -14130/+14707 |
| | |||||
* | 6395 | Kartik Agaram | 2020-05-24 | 1 | -0/+2 |
| | |||||
* | 6394 - a catastrophic bug | Kartik Agaram | 2020-05-24 | 3 | -1/+14 |
| | | | | | | | How did new-literal ever work?! Somehow we had eax silently being clobbered without affecting behavior over like 5 apps. Unsafe languages suck. Anyways, factorial.mu is now part of CI. | ||||
* | 6393 - start running .mu apps in CI | Kartik Agaram | 2020-05-24 | 5 | -12/+73 |
| | |||||
* | 6392 - 'length' instruction done in all complexity | Kartik Agaram | 2020-05-24 | 4 | -5/+322 |
| | |||||
* | 6391 | Kartik Agaram | 2020-05-24 | 2 | -45/+86 |
| | |||||
* | 6390 - return `length` in elements | Kartik Agaram | 2020-05-24 | 3 | -23/+113 |
| | |||||
* | 6389 | Kartik Agaram | 2020-05-24 | 1 | -9/+14 |
| | |||||
* | 6388 - fix regression #1 | Kartik Agaram | 2020-05-24 | 2 | -19/+118 |
| | |||||
* | 6387 | Kartik Agaram | 2020-05-23 | 2 | -19/+69 |
| | |||||
* | 6386 - documentation on editor setup | Kartik Agaram | 2020-05-23 | 1 | -0/+16 |
| | |||||
* | 6385 | Kartik Agaram | 2020-05-23 | 1 | -4/+4 |
| | |||||
* | 6384 | Kartik Agaram | 2020-05-22 | 44 | -14625/+19169 |
| | |||||
* | 6383 | Kartik Agaram | 2020-05-22 | 1 | -3/+5 |
| | |||||
* | 6382 - re-enable mu.subx in CI | Kartik Agaram | 2020-05-22 | 12 | -25/+25 |
| | | | | | | | | | | | I thought I'd done this in the previous commit, but I hadn't. And, what's more, there was a bug that seemed pretty tough for a time. Turns out my self-hosted translator doesn't support '.' comment tokens in data segments. Hopefully I'm past the valley of the shadow of death now. "I HAVE NO TOOLS BECAUSE I’VE DESTROYED MY TOOLS WITH MY TOOLS." -- James Mickens (https://www.usenix.org/system/files/1311_05-08_mickens.pdf) | ||||
* | update binaries | Kartik Agaram | 2020-05-22 | 13 | -0/+0 |
| | | | | CI should start passing again now. |