vvhitespace/.git
2020-03-30 Aaron TaylorRenamed the example to remove "tutorial" from the title.
2020-03-30 Aaron TaylorReplaced get_line() from wumpus with get_user_string...
2020-03-30 Aaron TaylorRemoved old Hello, World examples.
2020-03-30 Aaron TaylorAdded a 'Hello, World!" tutorial that links Whitespace...
2020-03-30 Aaron TaylorAdded get_user_string to stdlib.
2020-03-28 Aaron TaylorUpdated year in LICENSE.txt
2020-03-28 Aaron TaylorUpdated vvi tests README with info about adding new...
2020-03-28 Aaron TaylorUpdates to `stdlib_tests/` for release.
2020-03-28 Aaron TaylorUpdates to `tests/` for release. Mostly adding comments...
2020-03-28 Aaron TaylorAdded MIT/X license file for VVhitespace project.
2020-03-13 Aaron TaylorFinal (?) set of small changes to `rationale.md`.
2020-03-13 Aaron TaylorMore minor updates to `rationale.md`.
2020-03-13 Aaron TaylorSmall updates to `rationale.md` for display on Github.
2020-03-13 Aaron TaylorUpdated `rationale.md`, expanding previous notes.
2020-03-13 Aaron TaylorAdded `syntax_highlighting/` folder and instructions...
2020-03-13 Aaron TaylorAdded ability for player to move around the tunnels...
2020-03-13 Aaron TaylorAdded 'atoi' to stdlib.
2020-03-13 Aaron TaylorAdded 'isdigit' function to stdlib.
2020-02-26 Aaron TaylorAdded move_or_shoot function to Wumpus example.
2020-01-11 Daniel Neshyba... Replaced RNG with Xorshift implementation from Wikipedia.
2020-01-03 Aaron TaylorBulk commit of offline work on Hunt the Wumpus.
2019-12-12 Aaron TaylorMinor change to example in function description for...
2019-12-12 Aaron TaylorAdded `gcd` function to stdlib.
2019-09-08 Aaron TaylorAdded test for all stdio.pvvs subroutines.
2019-09-08 Aaron TaylorUpdated tests to use printsignednumber subroutine from...
2019-08-07 Aaron TaylorAdded tests for stdlib math functions.
2019-08-07 Aaron TaylorAdded tests for stdlib subroutine `strlen`.
2019-08-07 Aaron TaylorFixed bug in compiler related to pushing ASCII strings...
2019-08-01 Aaron TaylorRemoved `isnegative` subroutine from stdlib.
2019-08-01 Aaron TaylorAdded tests for `xor` subroutine from stdlib.
2019-08-01 Aaron TaylorAdded tests for `or` subroutine from stdlib.
2019-08-01 Aaron TaylorAdded tests for `and` subroutine from stdlib.
2019-08-01 Aaron TaylorUpdated VVhitespace's modulo function to always return...
2019-08-01 Aaron TaylorFixed bugs in `rshift` subroutine.
2019-08-01 Aaron TaylorUpdated tests for `lshift` subroutine.
2019-08-01 Aaron TaylorAdded test for `rshift` subroutine from stdlib.
2019-07-31 Aaron TaylorAdded test for `lshift` subroutine from stdlib.
2019-07-31 Aaron TaylorAdded tests for `not` subroutine in stdlib.
2019-07-31 Aaron TaylorUpdated `printmagnitudeofnumber` to handle most negativ...
2019-07-31 Aaron TaylorFixes to `vvi` related to pushing the most negative...
2019-07-31 Aaron TaylorFixing a comment in memsrch test and adding a dummy...
2019-07-31 Aaron TaylorAdded test for memsrch subroutine.
2019-07-31 Aaron TaylorAdded stdlib_test for memcmp subroutine.
2019-07-29 Aaron TaylorUpdated the stdlib and test READMEs.
2019-07-29 Aaron TaylorAdded stdlib_tests for memset and memcpy subroutines.
2019-07-28 Aaron TaylorAdded stdlib tests for slurp and spew.
2019-07-28 Aaron TaylorFixed off-by-one error in dumpstack subroutine.
2019-07-28 Aaron TaylorUpdated #includes for stdlib.
2019-07-28 Aaron TaylorMinor updates to stack.pvvs related to adding tests.
2019-07-27 Aaron TaylorAdded tests for stdlib stack functions. Fixed some...
2019-07-26 Aaron TaylorRearranging output in debug functions.
2019-07-26 Aaron TaylorAdded tests for debug.pvvs.
2019-07-26 Aaron TaylorReworked the test suite so I can create tests for the...
2019-07-26 Aaron TaylorModified stdlib to use stack rotations to timeshare...
2019-07-26 Aaron TaylorAdded bitwise OR and XOR subroutines to VVS stdlib.
2019-07-26 Aaron TaylorAdded bitwise AND subroutine to VVS stdlib.
2019-07-26 Aaron TaylorAdded isnegative and lowbitand subroutines to VVS stdlib.
2019-07-26 Aaron TaylorAdded deepdup subroutine to VVS stdlib.
2019-07-26 Aaron TaylorAdded not, rshift and lshift functions to VVS stdlib.
2019-07-26 Aaron TaylorInitial commit for Hunt the Wumpus - Adding some text...
2019-07-26 Aaron TaylorAdded a poor quality RNG from the POSIX random() manpage.
2019-07-20 Aaron TaylorAdded stackrotatereverse function to VVS stdlib to...
2019-07-20 Aaron TaylorChanged all #include directives for the stdlib to ...
2019-07-20 Aaron TaylorUpdating an example that was missed during label reassi...
2019-07-19 Aaron TaylorAdded some debugging output to `vvi` when jumping to...
2019-07-19 Aaron TaylorAdded printf and stackrotate functions to VVS stdlib.
2019-07-18 Aaron TaylorFixing a label I missed when moving functions in the...
2019-07-18 Aaron TaylorCorrecting incorrect comment in vvc related to parsing...
2019-07-18 Aaron TaylorChanged `vvc` to die on misquoted string.
2019-07-18 Aaron TaylorAdded ASCII string capability to `vvc`.
2019-07-18 Aaron TaylorVVS stdlib changes to `random` and `spewreg`, reallocat...
2019-07-17 Aaron TaylorAdded functions to stdlib:
2019-07-17 Aaron TaylorAdded label initialization check to `vvi`.
2019-07-16 Aaron TaylorAdded slurp & spew functions to VVS stdlib.
2019-07-15 Aaron TaylorAdded memsrch function to VVS stdlib.
2019-07-13 Aaron TaylorCPP doesn't like single quotes.
2019-07-13 Aaron TaylorAdded memcmp function to VVS stdlib.
2019-07-13 Aaron TaylorAdded memrand function to VVS stdlib.
2019-07-13 Aaron TaylorAdded memcpy function to VVS stdlib.
2019-07-13 Aaron TaylorAdded memset function to VVS stdlib.
2019-07-13 Aaron TaylorAdded VVS stdlib function to dump heap in human readabl...
2019-07-13 Aaron TaylorAdded random number generator to VVS stdlib.
2019-07-12 Aaron TaylorAdded example that prints a multi-digit number. Added...
2019-07-11 Aaron TaylorEvaluated WS interpreter SaTaN from threeifbywhiskey...
2019-07-11 Aaron TaylorAdding some notes for the Rationale, but still WIP.
2019-07-11 Aaron TaylorUpdated all the READMEs for VVhitespace.
2019-07-11 Aaron TaylorAdded newlines to 'Hello, World!' examples and fixed...
2019-07-11 Aaron TaylorAdding a 'Hello, World!' example using stdlib and a...
2019-07-11 Aaron TaylorUpdated 'Hello, World!' example to print using stdlib.
2019-07-11 Aaron TaylorAdded first two functions to stdlib.
2019-07-11 Aaron TaylorBugfix for BRZ and BMI commands that weren't advancing...
2019-07-08 Aaron TaylorUpdated VVS interpreter to 64 bit word. Also misc cleanup.
2019-07-08 Aaron TaylorChanged jump-if-tos-is-zero and jump-if-tos-is-negative...
2019-07-08 Aaron TaylorRemoved TODO comment related to creating language tests.
2019-07-07 Aaron TaylorAdded final tests. All VVhitespace commands now have...
2019-07-05 Aaron TaylorAdded tests for output half of IO IMP.
2019-07-05 Aaron TaylorAdded tests for flow control IMP.
2019-07-05 Aaron TaylorCleaning up test from previous, premature commit.
2019-07-05 Aaron TaylorAdded tests for heap IMP.
2019-07-05 Aaron TaylorFixed markdown formatting in rationale.md.
next