about summary refs log tree commit diff stats
path: root/build_and_test_until
Commit message (Collapse)AuthorAgeFilesLines
* 2319Kartik K. Agaram2015-10-291-2/+3
|
* 2288Kartik K. Agaram2015-10-271-3/+3
| | | | | | | Make it easy to skip distracting valgrind errors when debugging more obvious errors in early layers. Just throw a 'test' at the end of build_and_test_until commands to not run valgrind (and make it a regular test run).
* 2197Kartik K. Agaram2015-09-141-1/+1
|
* 2002Kartik K. Agaram2015-08-141-3/+1
| | | | | | | | | No, 2001 is no good. Phony targets can't early-exit if everything's built. New approach: $ CFLAGS=-g make && ./mu test etc.
* 1948Kartik K. Agaram2015-08-061-2/+2
|
* 1921 - show trace by clicking on codeKartik K. Agaram2015-08-021-2/+2
| | | | | | | Region to click on to edit is now reduced to just the menu bar for the sandbox (excluding the 'x' for deleting the sandbox). The symmetry there might be useful, but we'll see if the relative click area is in line with how commonly the actions are performed.
* 1623Kartik K. Agaram2015-06-221-2/+3
|
* 1616 - merging keyboard and events into 'console'Kartik K. Agaram2015-06-211-2/+2
| | | | | Only core layers currently passing. Console apps are probably still broken.
* 1300Kartik K. Agaram2015-05-071-1/+2
|
* 1298 - better ingredient/product handlingKartik K. Agaram2015-05-071-1/+1
| | | | | | | | | | | | | | | | | | | All primitives now always write to all their products. If a product is not used that's fine, but if an instruction seems to expect too many products mu will complain. In the process, many primitives can operate on more than two ingredients where it seems intuitive. You can add or divide more than two numbers together, copy or negate multiple corresponding locations, etc. There's one remaining bit of ugliness. Some instructions like get/get-address, index/index-address, wait-for-location, these can unnecessarily load values from memory when they don't need to. Useful vim commands: %s/ingredients\[\([^\]]*\)\]/ingredients.at(\1)/gc %s/products\[\([^\]]*\)\]/products.at(\1)/gc .,$s/\[\(.\)]/.at(\1)/gc
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+11
I've tried to update the Readme, but there are at least a couple of issues.