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

export default {
    function(this: PC, [reg1]: number[]) {
        const r1 = this.lib.parseReg(reg1);
        this.programPointer = this.registers[r1]
    },
    args: 1
}