dioscuri.module.cpu
Class Instruction_XLAT

java.lang.Object
  extended by dioscuri.module.cpu.Instruction_XLAT
All Implemented Interfaces:
Instruction

public class Instruction_XLAT
extends java.lang.Object
implements Instruction

Intel opcode D7
Set AL to memory byte DS:[BX + unsigned AL].
Flags modified: none


Constructor Summary
Instruction_XLAT()
          Class constructor
Instruction_XLAT(CPU processor)
          Class constructor specifying processor reference
 
Method Summary
 void execute()
          Set AL to memory byte DS:[BX + unsigned AL]
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Instruction_XLAT

public Instruction_XLAT()
Class constructor


Instruction_XLAT

public Instruction_XLAT(CPU processor)
Class constructor specifying processor reference

Parameters:
processor - Reference to CPU class
Method Detail

execute

public void execute()
Set AL to memory byte DS:[BX + unsigned AL]

Specified by:
execute in interface Instruction