summary refs log tree commit diff
path: root/instructions/BCC.ts
blob: f2d8cc394ea6ea06f05052d4131fd1bbcd979a0b (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, ['relative', 'absolute']);
    if (!this.carry)
        this.programCounter.set(location)
}