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

export default {
    function(this: PC) {
        this.returnStack.pop();
    },
    args: 0
}