using Contralto.Display; using System; namespace Contralto.CPU { public partial class AltoCPU { /// /// DisplayVerticalTask provides functionality for the DVT task /// private sealed class DisplayVerticalTask : Task { public DisplayVerticalTask(AltoCPU cpu) : base(cpu) { _taskType = TaskType.DisplayVertical; _wakeup = false; _displayController = _cpu._system.DisplayController; } protected override InstructionCompletion ExecuteInstruction(MicroInstruction instruction) { // We put ourselves back to sleep immediately once we've started running // TODO: for this and other similar patterns: rework this so we don't need to // override ExecuteInstruction just to do this (or similar polling). Virtual calls // are expensive, especially when millions of them are being made a second. _wakeup = false; return base.ExecuteInstruction(instruction); } protected override void ExecuteSpecialFunction2(MicroInstruction instruction) { DisplayVerticalF2 dv2 = (DisplayVerticalF2)instruction.F2; switch (dv2) { case DisplayVerticalF2.EVENFIELD: _nextModifier |= (ushort)(_displayController.EVENFIELD ? 1 : 0); break; default: throw new InvalidOperationException(String.Format("Unhandled display vertical F2 {0}.", dv2)); } } private DisplayController _displayController; } } }