rubyx/lib/slot_machine/macro/set_internal_byte.rb

13 lines
348 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 SetInternalByte < Macro
2019-09-11 18:53:20 +03:00
def to_risc(compiler)
compiler.builder(compiler.source).build do
2020-03-11 22:54:44 +02:00
message[:return_value] << message[:arg2]
integer = message[:arg1].reduce_int(false)
message[:receiver][integer] <= message[:arg2].reduce_int(false)
2019-09-11 18:53:20 +03:00
end
return compiler
end
end
end