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