1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00

Corrects ROL d, x.

This commit is contained in:
Thomas Harte 2020-10-10 11:25:14 -04:00
parent 7966592fae
commit d17c90edf7

View File

@ -794,7 +794,7 @@ ProcessorStorage::ProcessorStorage() {
/* 0x33 AND (d, s), y */ op(stack_relative_indexed_indirect, AND);
/* 0x34 BIT d, x */ op(direct_x, BIT);
/* 0x35 AND d, x */ op(direct_x, AND);
/* 0x36 ROL d, x */ op(absolute_x_rmw, ROL);
/* 0x36 ROL d, x */ op(direct_x_rmw, ROL);
/* 0x37 AND [d], y */ op(direct_indirect_indexed_long, AND);
/* 0x38 SEC i */ op(implied, SEC);
/* 0x39 AND a, y */ op(absolute_y, AND);