1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-28 09:54:49 +00:00

Corrects TSX lookup.

This commit is contained in:
Thomas Harte 2021-01-23 15:45:21 -05:00
parent 17b12120eb
commit 051d2b83f4

View File

@ -170,7 +170,7 @@ Instruction Decoder::instrucion_for_opcode(uint8_t opcode) {
Map(0xb6, LDX, ZeroPageY); Map(0xb7, BBC5, ZeroPageRelative);
Map(0xb8, CLV, Implied); Map(0xb9, LDA, AbsoluteY);
Map(0xba, TSX, AbsoluteY); Map(0xbb, CLB5, Accumulator);
Map(0xba, TSX, Implied); Map(0xbb, CLB5, Accumulator);
Map(0xbc, LDY, AbsoluteX); Map(0xbd, LDA, AbsoluteX);
Map(0xbe, LDX, AbsoluteY); Map(0xbf, CLB5, ZeroPage);