2019-08-12 12:16:15 +02:00
|
|
|
module Mom
|
2019-09-11 19:17:43 +02:00
|
|
|
class MethodMissing < 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
|
|
|
|
Builtin.emit_syscall( builder , :exit )
|
|
|
|
return compiler
|
|
|
|
end
|
|
|
|
end
|
2019-08-12 12:16:15 +02:00
|
|
|
end
|