Skip to content

Commit

Permalink
reorder bytecodes
Browse files Browse the repository at this point in the history
  • Loading branch information
parrt committed Apr 14, 2015
1 parent 8a8b169 commit 207a161
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/vm/Bytecode.java
Original file line number Diff line number Diff line change
Expand Up @@ -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, // <INVALID>
Expand Down

0 comments on commit 207a161

Please sign in to comment.