aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4ceb738..1ee758b 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ LTH ( a b -- bool ) push 0001 if a < b, 0000 otherwise
JEZ x ( cond -- ) conditional jump to x if cond != 0
JNZ x ( cond -- ) conditional jump to x if cond == 0
JMP x ( -- ) jump to x
-JRT x ( -- ) jump to x and store PC+2 to return stack
+JRT x ( -- ) store PC+2 to return stack and then jump to x
RET ( -- ) return from call, or quit if not in call
LDA ( addr -- value ) push value at absolute address to top of the stack
STA ( val addr -- ) write a value to an absolute address