From 1c9358c7eedc75d8a19254dbc293922f26f2624a Mon Sep 17 00:00:00 2001 From: Russell-S-Harper Date: Tue, 11 Sep 2018 20:48:56 -0400 Subject: [PATCH] Fixing typos. --- common/common.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/common.asm b/common/common.asm index 932e790..eb15dd7 100644 --- a/common/common.asm +++ b/common/common.asm @@ -878,17 +878,17 @@ _BRX .( ; generic branch testing _1 RTS .) -_BRE .( ; BRE xxyy 04 yy xx PC <- PC + xxyy - branch if Rp = Rq (after CMP) +_BRE .( ; BRE xxyy 04 yy xx PC <- PC + xxyy - branch if Rp = Rq (after CMR) LDA #_F_E BNE _BRX .) -_BRG .( ; BRG xxyy 05 yy xx PC <- PC + xxyy - branch if Rp > Rq (after CMP) +_BRG .( ; BRG xxyy 05 yy xx PC <- PC + xxyy - branch if Rp > Rq (after CMR) LDA #_F_G BNE _BRX .) -_BRL .( ; BRL xxyy 06 yy xx PC <- PC + xxyy - branch if Rp < Rq (after CMP) +_BRL .( ; BRL xxyy 06 yy xx PC <- PC + xxyy - branch if Rp < Rq (after CMR) LDA #_F_L BNE _BRX .)