Torsten Rüger
9a2716280c
Since they were embedded at first (easier copy/paste) they now got own files, like their brethren also mini tests for each instruction , nice start
13 lines
327 B
Ruby
13 lines
327 B
Ruby
module Mom
|
|
module Builtin
|
|
class MethodMissing < ::Mom::Instruction
|
|
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
|
|
end
|
|
end
|