From 0bf740232b8864d378c9557dc374dc1543a2cd99 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Tue, 2 May 2023 19:19:14 +0100 Subject: More readable --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'README.md') 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 -- cgit v1.2.3