same renames for bytes (set/get_byte)

This commit is contained in:
Torsten Ruger
2016-12-25 18:11:58 +02:00
parent f648bf7bd5
commit a5946cb644
11 changed files with 30 additions and 30 deletions

View File

@ -0,0 +1,21 @@
module Register
# RegToByte moves a byte into memory from a register.
# indexes are 1 based !
class RegToByte < Setter
end
# 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
# from = resolve_to_register from
# index = resolve_index( to , index)
# to = resolve_to_register to
# RegToByte.new( source, from , to , index)
# end
end