From 5e4f811ddf16069e64503cb0445de5e2b1eeeb7e Mon Sep 17 00:00:00 2001 From: mrdudz Date: Tue, 17 Jun 2025 22:52:42 +0200 Subject: [PATCH] remove commented out code --- src/da65/handler.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/da65/handler.c b/src/da65/handler.c index 4f35fbaa3..ee9b6e3c5 100644 --- a/src/da65/handler.c +++ b/src/da65/handler.c @@ -740,7 +740,6 @@ void OH_DirectImmediate (const OpcDesc* D) /* NOTE: currently is part of the instruction */ void OH_ZeroPageBit (const OpcDesc* D) { - /* unsigned Bit = GetCodeByte (PC) >> 5; */ unsigned Addr = GetCodeByte (PC+1); /* Generate a label in pass 1 */ @@ -756,8 +755,6 @@ void OH_ZeroPageBit (const OpcDesc* D) /* NOTE: currently is part of the instruction */ void OH_AccumulatorBit (const OpcDesc* D) { - /* unsigned Bit = GetCodeByte (PC) >> 5; */ - /* Output the line */ OneLine (D, "a"); } @@ -767,7 +764,6 @@ void OH_AccumulatorBit (const OpcDesc* D) /* NOTE: currently is part of the instruction */ void OH_AccumulatorBitBranch (const OpcDesc* D) { - /* unsigned Bit = GetCodeByte (PC) >> 5; */ signed char BranchOffs = GetCodeByte (PC+1); /* Calculate the target address for the branch */