rubyx/lib/slot_machine/macro/set_internal_word.rb

16 lines
415 B
Ruby
Raw Normal View History

2019-10-03 21:07:55 +03:00
module SlotMachine
2019-09-11 20:17:43 +03:00
class SetInternalWord < Macro
2019-09-11 18:53:20 +03:00
def to_risc(compiler)
compiler.builder(compiler.source).build do
object! << message[:receiver]
integer! << message[:arg1] # "index"
object_reg! << message[:arg2]#"value"
integer.reduce_int
object[integer] << object_reg
message[:return_value] << object_reg
end
return compiler
end
end
end