// interface.h // Provides the interface with which all video interactions must occur. #pragma once #include "../cpu/core.h" #include // Initialize the video system. void DisplayInit(); // Shut down the video system. void DisplayClose(); // Display a character on the screen. void DisplayInput(byte n); // Print information on the video system. void PrintInfo();