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

export default {
    function(this: PC, [addr]: string[]) {
        this.programPointer = Number(addr) - 1
    },
    args: 1
}