summary refs log tree commit diff
path: root/instructions/BRA.ts
blob: 11d32b8480e2a99e7c6d6fee583103c2f5acfae8 (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']);
    this.programCounter.set(location)
}