From 44a1ea6542c812b173fb9685837c0b2fdc6a7c61 Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Wed, 29 Nov 2023 17:38:56 +1100 Subject: bug fix apple.c:9 + inconsequential refactoring --- src/video/interface.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/video/interface.h') diff --git a/src/video/interface.h b/src/video/interface.h index 5100032..e3244b0 100644 --- a/src/video/interface.h +++ b/src/video/interface.h @@ -1,11 +1,19 @@ // 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. char UserInput(); +// Initialization procedure for the terminal void TerminalInit(); +// Exit procedure for the terminal. void TerminalClose(); -void TerminalInput(char n); +// Deliver an Apple ASCII character to the terminal. +void TerminalInput(char n); \ No newline at end of file -- cgit v1.2.3