Fixing ripples from previous

This commit is contained in:
2020-03-16 17:51:21 +02:00
parent 3ce6ed5263
commit 0ed5e74748
5 changed files with 10 additions and 10 deletions

View File

@ -8,7 +8,7 @@ module Risc
@right = RegisterValue.new(:right , :Integer)
end
def risc(i)
@left.op :- , @right
OperatorInstruction.new( "source" , :- , @left , @right )
end
def test_min
assert_operator 1 , :- , :left , :right , "op_-_"