11 lines
263 B
Ruby
11 lines
263 B
Ruby
module SlotMachine
|
|
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
|