2015-11-19 09:07:27 +01:00
|
|
|
module Register
|
|
|
|
|
2016-12-25 17:11:58 +01:00
|
|
|
# RegToByte moves a byte into memory from a register.
|
2015-11-19 09:07:27 +01:00
|
|
|
|
|
|
|
# indexes are 1 based !
|
|
|
|
|
2016-12-25 17:11:58 +01:00
|
|
|
class RegToByte < Setter
|
2015-11-19 09:07:27 +01:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-12-25 17:11:58 +01:00
|
|
|
# Produce a RegToByte instruction.
|
2015-11-19 09:07:27 +01:00
|
|
|
# from and to are translated (from symbol to register if neccessary)
|
|
|
|
# but index is left as is.
|
2016-12-25 17:11:58 +01:00
|
|
|
# def self.reg_to_byte source , from , to , index
|
2016-12-11 11:18:11 +01:00
|
|
|
# from = resolve_to_register from
|
2016-12-28 17:16:39 +01:00
|
|
|
# index = resolve_to_index( to , index)
|
2016-12-11 11:18:11 +01:00
|
|
|
# to = resolve_to_register to
|
2016-12-25 17:11:58 +01:00
|
|
|
# RegToByte.new( source, from , to , index)
|
2016-12-11 11:18:11 +01:00
|
|
|
# end
|
2015-11-19 09:07:27 +01:00
|
|
|
|
|
|
|
end
|