summaryrefslogtreecommitdiff
path: root/src/video/interface.h
diff options
context:
space:
mode:
authoralekseiplusplus <alekseijeaves@protonmail.com>2023-12-08 11:48:26 +1100
committeralekseiplusplus <alekseijeaves@protonmail.com>2023-12-08 11:48:26 +1100
commit8968f471650d25c9df68347644e0e5c0ecdbda6e (patch)
tree2a85cf00b0b1b168a24a1f408d203b5517949a69 /src/video/interface.h
parentd28ad56810b43cb3ea5d11e5e32042f69ee04562 (diff)
minor commit
Diffstat (limited to 'src/video/interface.h')
-rw-r--r--src/video/interface.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/video/interface.h b/src/video/interface.h
index dc074b2..16cc965 100644
--- a/src/video/interface.h
+++ b/src/video/interface.h
@@ -6,17 +6,16 @@
#include "../cpu/core.h"
#include <stdlib.h>
-// Common procedure for taking in user input.
-byte UserInput();
-// Common way to print processor information.
-void PrintInfo();
-
-// Initialization procedure for the terminal
+// Initialize the video system.
void DisplayInit();
-// Exit procedure for the terminal.
+// Shut down the video system.
void DisplayClose();
-// Deliver an Apple ASCII character to the terminal.
+// Display a character on the screen.
void DisplayInput(byte n);
+
+
+// Print information on the video system.
+void PrintInfo();