1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-02-05 16:05:09 +00:00
Files
livingcomputermuseum.ContrAlto/Contralto/CPU/Tasks/ParityTask.cs

21 lines
606 B
C#

using System;
namespace Contralto.CPU
{
public partial class AltoCPU
{
/// <summary>
/// ParityTask is provided for completeness only, and implements the logic for the Parity task.
/// The Parity Task will never actually be woken because I'm not planning on emulating faulty memory.
/// </summary>
private sealed class ParityTask : Task
{
public ParityTask(AltoCPU cpu) : base(cpu)
{
_taskType = TaskType.Parity;
_wakeup = false;
}
}
}
}