11 lines
273 B
Ruby
11 lines
273 B
Ruby
module Mom
|
|
class MethodMissing < Macro
|
|
def to_risc(compiler)
|
|
builder = compiler.builder(compiler.source)
|
|
builder.prepare_int_return # makes integer_tmp variable as return
|
|
Macro.emit_syscall( builder , :exit )
|
|
return compiler
|
|
end
|
|
end
|
|
end
|