mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-01-17 00:23:24 +00:00
19 lines
501 B
C#
19 lines
501 B
C#
namespace Contralto.CPU
|
|
{
|
|
public partial class AltoCPU
|
|
{
|
|
/// <summary>
|
|
/// DisplayWordTask provides functionality for the Memory Refresh task
|
|
/// </summary>
|
|
private sealed class MemoryRefreshTask : Task
|
|
{
|
|
public MemoryRefreshTask(AltoCPU cpu) : base(cpu)
|
|
{
|
|
_taskType = TaskType.MemoryRefresh;
|
|
|
|
_wakeup = false;
|
|
}
|
|
}
|
|
}
|
|
}
|