rubyx/test/mom/instruction/helper.rb
2018-05-15 19:29:27 +03:00

14 lines
211 B
Ruby

require_relative '../helper'
module Mom
class CompilerMock
def use_reg( type )
Risc.tmp_reg(type , nil)
end
def add_constant(c)
end
end
class InstructionMock < Instruction
end
end