aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-05-02 19:19:14 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-05-02 19:19:14 +0100
commit0bf740232b8864d378c9557dc374dc1543a2cd99 (patch)
treef214030e64bbf0802149624c0af1837e234a8d30
parent854349100c4e98b7913c4024417fc028acb14277 (diff)
downloadtr8vm-0bf740232b8864d378c9557dc374dc1543a2cd99.tar.gz
tr8vm-0bf740232b8864d378c9557dc374dc1543a2cd99.zip
More readable
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 2886be8..18f474f 100644
--- a/README.md
+++ b/README.md
@@ -368,43 +368,43 @@ Return from a call by setting PC to the top 16-bit value popped from the stack.
#### Branching
BZ inst
-Branch if Zero, will skip the next instruction if ZF is not set.
+Branch if Zero, will run the next instruction if ZF is set.
Affected flags: BF
BNZ inst
-Branch if not Zero, will skip the next instruction if ZF flag is set.
+Branch if not Zero, will run the next instruction if ZF flag is not set.
Affected flags: BF
BC inst
-Branch if Carry, will skip the next instruction if CF flag is not set.
+Branch if Carry, will run the next instruction if CF flag is set.
Affected flags: BF
BNC inst
-Branch if not Carry, will skip the next instruction if CF flag is set.
+Branch if not Carry, will run the next instruction if CF flag is not set.
Affected flags: BF
BO inst
-Branch if Overflow, will skip the next instruction if OF flag is not set.
+Branch if Overflow, will run the next instruction if OF flag is set.
Affected flags: BF
BNO inst
-Branch if not Overflow, will skip the next instruction if OF flag is set.
+Branch if not Overflow, will run the next instruction if OF flag is not set.
Affected flags: BF
BS inst
-Branch if Sign, will skip the next instruction if SF flag is not set.
+Branch if Sign, will run the next instruction if SF flag is set.
Affected flags: BF
BNS inst
-Branch if not Sign, will skip the next instruction if SF flag is set.
+Branch if not Sign, will run the next instruction if SF flag is set.
Affected flags: BF
BI inst
-Branch if Interrupt, will skip the next instruction if IF flag is not set.
+Branch if Interrupt, will run the next instruction if IF flag is set.
Affected flags: BF
BNI inst
-Branch if not Interrupt, will skip the next instruction if IF flag is set.
+Branch if not Interrupt, will run the next instruction if IF flag is not set.
Affected flags: BF
#### IO, flags and Misc