dioscuri.module.cpu
Class Instruction_ADD_EbGb

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

public class Instruction_ADD_EbGb
extends java.lang.Object
implements Instruction

Intel opcode 00
Add byte in register (source) to memory/register (destination).
The addressbyte determines the source (rrr bits) and destination (sss bits).
Flags modified: OF, SF, ZF, AF, PF, CF


Constructor Summary
Instruction_ADD_EbGb()
          Class constructor
Instruction_ADD_EbGb(CPU processor)
          Class constructor specifying processor reference
 
Method Summary
 void execute()
          Add byte in register (source) to memory/register (destination).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Instruction_ADD_EbGb

public Instruction_ADD_EbGb()
Class constructor


Instruction_ADD_EbGb

public Instruction_ADD_EbGb(CPU processor)
Class constructor specifying processor reference

Parameters:
processor - Reference to CPU class
Method Detail

execute

public void execute()
Add byte in register (source) to memory/register (destination).

Specified by:
execute in interface Instruction