using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contralto.Display
{
///
/// IAltoDisplay defines the interface necessary for generating and rendering the Alto's
/// bitmapped display.
///
public interface IAltoDisplay
{
///
/// Renders a word's worth of data to the specified scanline and word offset.
///
///
///
///
///
void DrawDisplayWord(int scanline, int wordOffset, ushort dataWord, bool lowRes);
///
/// Renders the cursor word for the specified scanline.
///
///
///
///
///
void DrawCursorWord(int scanline, int xOffset, bool whiteOnBlack, ushort cursorWord);
///
/// Indicates that an entire frame is ready for display and should be rendered.
///
void Render();
}
}