summary refs log tree commit diff
path: root/instructions/TXA.ts
blob: abbdaaa87e4d06a8e16a08257e516c8030e87801 (plain)
1
2
3
4
5
6
import type The65c02 from "../65c02.ts";

export default function (this: The65c02) {
    this.programCounter.increment()
    this.regA.set(this.regX.num())
}