using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Contralto.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); /// /// Causes the display to be rendered /// void Render(); } }