summary refs log tree commit diff
path: root/instructions_new/ret.ts
diff options
context:
space:
mode:
Diffstat (limited to 'instructions_new/ret.ts')
-rw-r--r--instructions_new/ret.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/instructions_new/ret.ts b/instructions_new/ret.ts
deleted file mode 100644
index 04b5cc3..0000000
--- a/instructions_new/ret.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { PC } from "../pc.ts";
-
-export default {
-    function(this: PC) {
-        const returnAddr = this.returnStack.pop();
-        if (!returnAddr) throw 'return stack empty';
-        this.programPointer = returnAddr;
-    },
-    args: 1
-}
\ No newline at end of file