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

export default {
    function(this: PC) {
        // this.programPointer = 0xFFFF - 1
        this.halted = true
    },
    args: 0
}