From a6e0b734d529692ef3cbcf4556026b3fa262c2e9 Mon Sep 17 00:00:00 2001 From: d_m Date: Thu, 1 Aug 2024 23:33:19 -0400 Subject: [PATCH] fix typo --- uxntal.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uxntal.1 b/uxntal.1 index c03ab70..601af47 100644 --- a/uxntal.1 +++ b/uxntal.1 @@ -96,9 +96,9 @@ The break instruction is used to end a vector call and return control to the vir The "immediate jump" instructions are produced by the assembler. They interpret the next 2 bytes of the ROM as a relative address (\fIaddr\fP) and have the following effects: - \fBJMI\fP ( -- ) jump to \fIaddr\fP unconditionally - \fBJCI\fP ( bool^ -- ) jump to \fIaddr\fP if \fIbool\fP is non-zero - \fBJSI\fP ( -- [cur] ) jump to \fIaddr\fP saving the current address (\fIcur\fP) on the return stack + \fBJMI\fP ( -- ) jump to \fIaddr\fP unconditionally + \fBJCI\fP ( bool^ -- ) jump to \fIaddr\fP if \fIbool\fP is non-zero + \fBJSI\fP ( -- [cur*] ) jump to \fIaddr\fP saving the current address (\fIcur\fP) on the return stack (The instruction pointer will be moved forward 2 bytes, past the relative address.)