rubyx/lib/risc/instructions/operator_instruction.rb
2018-03-22 18:38:19 +02:00

22 lines
442 B
Ruby

module Risc
class OperatorInstruction < Instruction
def initialize source , operator , left , right
super(source)
@operator = operator
@left = left
@right = right
end
attr_reader :operator, :left , :right
def to_s
class_source "#{left} #{operator} #{right}"
end
end
def self.op source , operator , left , right
OperatorInstruction.new source , operator , left , right
end
end