replaced < by &lt;

This commit is contained in:
sejo 2021-09-28 15:35:29 -05:00
parent c189a46a1e
commit b19d323421
2 changed files with 2 additions and 3 deletions

View File

@ -118,8 +118,7 @@ short mode is covered on day 2, and return and keep mode are covered on day 5.
* EQU: push 01 down into the stack if the top two elements of the stack are equal, 00 otherwise ( a b -- a==b )
* NEQ: push 01 down into the stack if the top two elements of the stack are not equal, 00 otherwise ( a b -- a!=b )
* GTH: push 01 down into the stack if the first element is greater than the second, 00 otherwise ( a b -- a>b )
* LTH: push 01 down into the stack if the first element is less than the second, 00 otherwise ( a b -- a<b )
* LTH: push 01 down into the stack if the first element is less than the second, 00 otherwise ( a b -- a&lt;b )
* AND: perform a bitwise AND with the top two elements of the stack, and push down the result ( a b -- a&b )
* ORA: perform a bitwise OR with the top two elements of the stack, and push down the result ( a b -- a|b )
* EOR: perform a bitwise exclusive-OR with the top two elements of the stack, and push down the result ( a b -- a^b )

View File

@ -702,7 +702,7 @@ these are all the uxntal instructions that we discussed today!
* EQU: push 01 down into the stack if the top two elements of the stack are equal, 00 otherwise ( a b -- a==b )
* NEQ: push 01 down into the stack if the top two elements of the stack are not equal, 00 otherwise ( a b -- a!=b )
* GTH: push 01 down into the stack if the first element is greater than the second, 00 otherwise ( a b -- a>b )
* LTH: push 01 down into the stack if the first element is less than the second, 00 otherwise ( a b -- a<b )
* LTH: push 01 down into the stack if the first element is less than the second, 00 otherwise ( a b -- a&lt;b )
## bitwise logic