summaryrefslogtreecommitdiff
path: root/src/video/interface.h
blob: 459714530770e13e89ee233924b7ffefd1a919c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// interface.h
// Provides the interface with which all video interactions must occur.

#pragma once

#include "../cpu/core.h"
#include <stdlib.h>


// 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();