rubyx/lib/risc/instructions/reg_to_byte.rb

21 lines
507 B
Ruby
Raw Normal View History

module Risc
2016-12-25 17:11:58 +01:00
# RegToByte moves a byte into memory from a register.
# indexes are 1 based !
2016-12-25 17:11:58 +01:00
class RegToByte < Setter
end
2016-12-25 17:11:58 +01:00
# Produce a RegToByte instruction.
# from and to are translated (from symbol to register if neccessary)
# but index is left as is.
def self.reg_to_byte( source , from , to , index)
raise "Not register #{to}" unless RegisterValue.look_like_reg(to)
index = to.resolve_index(index) if index.is_a?(Symbol)
RegToByte.new( source, from , to , index)
end
end