summary refs log tree commit diff
path: root/pc-thing/instructions/inc.ts
blob: 180546e247c99b84b381b2062f592c008499c5cb (plain)
1
2
3
4
5
6
7
8
9
import { PC } from "../pc.ts";

export default {
    function(this: PC, [reg, by]: number[]) {
        const r = this.lib.parseReg(reg);
        this.registers[r] += by
    },
    args: 2
}