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