dioscuri.module.cpu
Class Instruction_ESC_FPU

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

public class Instruction_ESC_FPU
extends java.lang.Object
implements Instruction

Intel opcodes D8 - DF
Escape to coprocessor instruction set (Floating Point Unit, FPU).
NOTE: This implementation only advances the instruction pointer to the next instruction,
but does not perform the associated FPU instruction!


Constructor Summary
Instruction_ESC_FPU()
          Class constructor
Instruction_ESC_FPU(CPU processor)
          Class constructor specifying processor reference
 
Method Summary
 void execute()
          Advance IP to next instruction.
NOTE: The actual instruction is not executed!
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Instruction_ESC_FPU

public Instruction_ESC_FPU()
Class constructor


Instruction_ESC_FPU

public Instruction_ESC_FPU(CPU processor)
Class constructor specifying processor reference

Parameters:
processor - Reference to CPU class
Method Detail

execute

public void execute()
Advance IP to next instruction.
NOTE: The actual instruction is not executed!

Specified by:
execute in interface Instruction