aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-04-14 00:49:55 +0200
committerkdx <kikoodx@paranoici.org>2023-04-14 00:49:55 +0200
commit1ea1be987dfe7cf78f7a0eeed02b22820484db49 (patch)
treed8ff2a1d61152c5a6b92c5525e648108810c48f1
parent792afdc668fb089d90d734087f7c98c1810ea847 (diff)
downloadorga-1ea1be987dfe7cf78f7a0eeed02b22820484db49.tar.gz
clarify JRT
-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