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

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