11 lines
263 B
Ruby
Raw Normal View History

2019-10-03 21:07:55 +03:00
module SlotMachine
2019-09-11 20:17:43 +03:00
class Exit < Macro
def to_risc(compiler)
builder = compiler.builder(compiler.source)
builder.prepare_int_return # makes integer_tmp variable as return
Macro.exit_sequence(builder)
return compiler
end
end
end