From 7ebf976279cc8e16f2fb116fbc3905aeb9abc10e Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Thu, 4 May 2023 17:29:57 -0700 Subject: [PATCH] Fix display of Rockwell long op descrs --- Asm65/OpDescription.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Asm65/OpDescription.cs b/Asm65/OpDescription.cs index c6b9ab5..00a32eb 100644 --- a/Asm65/OpDescription.cs +++ b/Asm65/OpDescription.cs @@ -750,13 +750,13 @@ namespace Asm65 { { OpName.SMB7, SMB_DESC }, }; - private static string BBR_DESC = + private const string BBR_DESC = "Branches to a relative address if the specified bit in memory is zero."; - private static string BBS_DESC = + private const string BBS_DESC = "Branches to a relative address if the specified bit in memory is one."; - private static string RMB_DESC = + private const string RMB_DESC = "Clears a bit in memory."; - private static string SMB_DESC = + private const string SMB_DESC = "Sets a bit in memory.";