rubyx/lib/risc/instructions/reg_to_slot.rb

28 lines
891 B
Ruby
Raw Normal View History

module Risc
# RegToSlot moves data into memory from a register.
# SlotToReg moves data into a register from memory.
# Both use a base memory (a register)
# This is because that is what cpu's can do. In programming terms this would be accessing
2020-03-01 11:42:28 +01:00
# an element in an array, in the case of RegToSlot setting the register in the array.
2018-03-21 11:18:04 +01:00
# btw: to move data between registers, use Transfer
class RegToSlot < Setter
end
# Produce a RegToSlot instruction.
# From and to are registers
# index may be a Symbol in which case is resolves with resolve_index.
2020-03-01 11:42:28 +01:00
#
# The slot is ultimately a memory location, so no new register is created
def self.reg_to_slot( source , from , to , index )
raise "Not register #{to}" unless RegisterValue.look_like_reg(to)
index = to.resolve_index(index) if index.is_a?(Symbol)
RegToSlot.new( source, from , to , index)
end
end