Kartik Agaram
Kartik Agaram
Giving mnemonics to x86 opcodes might make SubX easier for newcomers to read. This issue is intended to track the pros and cons. Previous discussion: https://news.ycombinator.com/item?id=21268252#21293301 Initial list of pros...
Right now it's `cat ~/.config/rat/ratrc`. However, [the location of `ratrc` is no longer hard-coded](https://github.com/ericfreese/rat/commit/73e4b90465). At the very least we should make the command consistent with that. But perhaps there's a...
I believe `struct erow` requires the following invariant: ``` for (int i = 0; i < E.numrows; ++i) assert(E.row[i].idx == i); ``` This is important because `erow.idx` is used to...
This fixes #53, reducing CPU consumption from 180% to 2% when running Qemu. Many thanks to @copy for this suggestion.
It looks like the old `automagic` file is no longer in the repo.
Here's a test LÖVE app: ```lua vudu = require('vudu') function love.load(arg) vudu.initialize() love.window.setMode(0, 0) -- maximize end ``` When I run this app and hit `, the debug UI no...