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

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