dioscuri.module.cpu
Class Instruction_CLC

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

public class Instruction_CLC
extends java.lang.Object
implements Instruction

Intel opcode F8
Clear carry flag.
Set CF to 0
Flags modified: none


Constructor Summary
Instruction_CLC()
          Class constructor
Instruction_CLC(CPU processor)
          Class constructor specifying processor reference
 
Method Summary
 void execute()
          Set CF to 0
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Instruction_CLC

public Instruction_CLC()
Class constructor


Instruction_CLC

public Instruction_CLC(CPU processor)
Class constructor specifying processor reference

Parameters:
processor - Reference to CPU class
Method Detail

execute

public void execute()
Set CF to 0

Specified by:
execute in interface Instruction