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

export default {
    function(this: PC) {
        this.registers[2] = ~this.registers[0]
    },
    args: 0
}