rubyx/lib/mom/macro/putstring.rb
2019-09-13 10:42:20 +03:00

15 lines
398 B
Ruby

module Mom
class Putstring < Macro
def to_risc(compiler)
builder = compiler.builder(compiler.source)
builder.prepare_int_return # makes integer_tmp variable as return
builder.build do
word! << message[:receiver]
integer! << word[Parfait::Word.get_length_index]
end
Mom::Macro.emit_syscall( builder , :putstring )
compiler
end
end
end