mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Corrects JMP program.
This commit is contained in:
parent
f7b119ffe1
commit
e68b3a2f32
@ -792,7 +792,7 @@ ProcessorStorage::ProcessorStorage() {
|
|||||||
/* 0x49 EOR # */ op(immediate, EOR);
|
/* 0x49 EOR # */ op(immediate, EOR);
|
||||||
/* 0x4a LSR A */ op(accumulator, LSR);
|
/* 0x4a LSR A */ op(accumulator, LSR);
|
||||||
/* 0x4b PHK s */ op(stack_push, PHK);
|
/* 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);
|
/* 0x4d EOR a */ op(absolute, EOR);
|
||||||
/* 0x4e LSR a */ op(absolute_rmw, LSR);
|
/* 0x4e LSR a */ op(absolute_rmw, LSR);
|
||||||
/* 0x4f EOR al */ op(absolute_long, EOR);
|
/* 0x4f EOR al */ op(absolute_long, EOR);
|
||||||
|
Loading…
Reference in New Issue
Block a user