From 3bfe60de4484bae581e77d50d00abaeb47dabcc7 Mon Sep 17 00:00:00 2001 From: Peter Ferrie Date: Wed, 10 Jul 2019 18:03:42 -0700 Subject: [PATCH] use BYTE --- asm/6502/decompress_v1.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asm/6502/decompress_v1.asm b/asm/6502/decompress_v1.asm index bbbbe6c..07dfdbd 100755 --- a/asm/6502/decompress_v1.asm +++ b/asm/6502/decompress_v1.asm @@ -59,7 +59,7 @@ LARGE_VARLEN_LITERALS ; handle 16 bits literals count ; literals count = directly these 16 bits JSR GETLARGESRC ; grab low 8 bits in X, high 8 bits in A TAY ; put high 8 bits in Y - .DB $A9 ; mask TAX (faster than BCS) + BYTE $A9 ; mask TAX (faster than BCS) PREPARE_COPY_LITERALS TAX PREPARE_COPY_LITERALS_HIGH