From 207a16166261edbad16a75c4749f3b193d6e25e3 Mon Sep 17 00:00:00 2001 From: Terence Parr Date: Tue, 14 Apr 2015 16:48:22 -0700 Subject: [PATCH] reorder bytecodes --- src/vm/Bytecode.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vm/Bytecode.java b/src/vm/Bytecode.java index facbd0c..bc75b9b 100644 --- a/src/vm/Bytecode.java +++ b/src/vm/Bytecode.java @@ -30,8 +30,7 @@ public Instruction(String name, int nargs) { public static final short CALL = 16; public static final short RET = 17; // return with/without value - - public static final short HALT = 19; + public static final short HALT = 18; public static Instruction[] instructions = new Instruction[] { null, //