summary refs log tree commit diff
path: root/instructions/BNE.ts
blob: 9d83f0a8c3158a3deb3bbd21616c63750292fe9f (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.zero)
        this.programCounter.set(location)
}