summary refs log tree commit diff
path: root/pc-thing/instructions/sub.ts
blob: 8e4d894e85ff0d0897e568d50bc4c6cba09b014c (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] - this.registers[1]
    },
    args: 0
}