// interface.h // Provides the interface with which all video interactions must occur. #pragma once #include "../cpu/core.h" #include // Common procedure for taking in user input. byte UserInput(); // Common way to print processor information. void PrintInfo(); // Initialization procedure for the terminal void TerminalInit(); // Exit procedure for the terminal. void TerminalClose(); // Deliver an Apple ASCII character to the terminal. void TerminalInput(byte n);