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

@ -157,7 +157,7 @@ module Register
true
end
def execute_GetByte
def execute_ByteToReg
object = get_register( @instruction.array )
if( @instruction.index.is_a?(Numeric) )
index = @instruction.index
@ -171,7 +171,7 @@ module Register
true
end
def execute_SetByte
def execute_RegToByte
value = get_register( @instruction.register )
object = get_register( @instruction.array )
if( @instruction.index.is_a?(Numeric) )