From e68b3a2f32bf71c4675313081e07a77c502bf218 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 7 Oct 2020 19:59:29 -0400 Subject: [PATCH] Corrects JMP program. --- Processors/65816/Implementation/65816Storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processors/65816/Implementation/65816Storage.cpp b/Processors/65816/Implementation/65816Storage.cpp index 947148166..280933e12 100644 --- a/Processors/65816/Implementation/65816Storage.cpp +++ b/Processors/65816/Implementation/65816Storage.cpp @@ -792,7 +792,7 @@ ProcessorStorage::ProcessorStorage() { /* 0x49 EOR # */ op(immediate, EOR); /* 0x4a LSR A */ op(accumulator, LSR); /* 0x4b PHK s */ op(stack_push, PHK); - /* 0x4c JMP a */ op(absolute, JMP); + /* 0x4c JMP a */ op(absolute_jmp, JMP); /* 0x4d EOR a */ op(absolute, EOR); /* 0x4e LSR a */ op(absolute_rmw, LSR); /* 0x4f EOR al */ op(absolute_long, EOR);