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

export default function (this: The65c02) {
    const res = this.regX.num() - 1;
    this.regX.set(res & 0xFF);
    this.flagZN(res & 0xFF);
    this.programCounter.increment();
}