dioscuri.module.cpu
Class Instruction_SALC

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

public class Instruction_SALC
extends java.lang.Object
implements Instruction

Intel opcode D6
Set AL on CF (undocumented Intel instruction).
Set or clear AL depending on carry flag status
Flags modified: none


Constructor Summary
Instruction_SALC()
          Class constructor
Instruction_SALC(CPU processor)
          Class constructor specifying processor reference
 
Method Summary
 void execute()
          Set or clear AL depending on carry flag status
Information taken from http://www.x86.org/secrets/opcodes/salc.htm
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Instruction_SALC

public Instruction_SALC()
Class constructor


Instruction_SALC

public Instruction_SALC(CPU processor)
Class constructor specifying processor reference

Parameters:
processor - Reference to CPU class
Method Detail

execute

public void execute()
Set or clear AL depending on carry flag status
Information taken from http://www.x86.org/secrets/opcodes/salc.htm

Specified by:
execute in interface Instruction