change the debug output to be more readable

This commit is contained in:
Torsten Ruger
2014-06-02 15:11:48 +03:00
parent 7c1c5431bc
commit 88a26414eb
9 changed files with 28 additions and 13 deletions

View File

@ -127,6 +127,9 @@ module Vm
def minus block , first , right
RegisterMachine.instance.integer_minus block , self , first , right
end
def left_shift block , first , right
RegisterMachine.instance.integer_left_shift block , self , first , right
end
def load block , right
if(right.is_a? IntegerConstant)