adjust branch names
IsXXX with xxx as condition, same as after if_xxx AlwaysBranch is back to Branch
This commit is contained in:
@ -96,13 +96,13 @@ module Interpreter
|
||||
end
|
||||
|
||||
# Instruction interpretation starts here
|
||||
def execute_AlwaysBranch
|
||||
def execute_Branch
|
||||
target = @instruction.block
|
||||
set_block target
|
||||
false
|
||||
end
|
||||
|
||||
def execute_IsZeroBranch
|
||||
def execute_IsZero
|
||||
#puts @instruction.inspect
|
||||
if( @flags[:zero] )
|
||||
target = @instruction.block
|
||||
|
Reference in New Issue
Block a user