1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Corrects JMP program.

This commit is contained in:
Thomas Harte 2020-10-07 19:59:29 -04:00
parent f7b119ffe1
commit e68b3a2f32

View File

@ -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);