2019-10-03 21:07:55 +03:00
|
|
|
module SlotMachine
|
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-10-03 21:07:55 +03:00
|
|
|
SlotMachine::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
|