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

export default function (this: The65c02, mode: string) {
    const location = this.getAddr(mode, ['absolute']);
    this.push(this.programCounter.num())
    this.programCounter.set(location)
}