diff options
Diffstat (limited to 'instructions/jz.ts')
-rw-r--r-- | instructions/jz.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/instructions/jz.ts b/instructions/jz.ts deleted file mode 100644 index 0e105b3..0000000 --- a/instructions/jz.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { PC } from "../pc.ts"; - -export default { - function(this: PC, [addr]: string[]) { - if (this.returnFlag != 0) return; - this.programPointer = +addr - 1 - }, - args: 1 -} \ No newline at end of file |