rubyx/test/mom/instruction/helper.rb
2018-05-16 12:35:44 +03:00

17 lines
239 B
Ruby

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