2019-08-12 13:16:15 +03:00
|
|
|
module Mom
|
2019-09-11 20:17:43 +03:00
|
|
|
class Putstring < Macro
|
2019-09-11 18:53:20 +03:00
|
|
|
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
|
2019-09-13 10:41:13 +03:00
|
|
|
Mom::Macro.emit_syscall( builder , :putstring )
|
2019-09-11 18:53:20 +03:00
|
|
|
compiler
|
|
|
|
end
|
|
|
|
end
|
2019-08-12 13:16:15 +03:00
|
|
|
end
|