rubyx/lib/slot_machine/macro/set_internal_word.rb

14 lines
372 B
Ruby
Raw Normal View History

2019-10-03 20:07:55 +02:00
module SlotMachine
2019-09-11 19:17:43 +02:00
class SetInternalWord < Macro
2019-09-11 17:53:20 +02:00
def to_risc(compiler)
compiler.builder(compiler.source).build do
2020-03-12 20:39:01 +01:00
integer = message[:arg1].to_reg.reduce_int(false)
object_reg = message[:arg2].to_reg
message[:receiver][integer] << object_reg
2019-09-11 17:53:20 +02:00
message[:return_value] << object_reg
end
return compiler
end
end
end