mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-29 13:03:36 +01:00
23 lines
578 B
C
23 lines
578 B
C
//---
|
|
//
|
|
// gint display module: screen
|
|
//
|
|
// Interacts with the physical screen. See other display modules for video
|
|
// ram management and drawing.
|
|
//
|
|
// The screen basically has two input values, which are a register
|
|
// selector and the selected register's value. What this module does is
|
|
// essentially selecting registers by setting *selector and assigning them
|
|
// values by setting *data.
|
|
//---
|
|
|
|
#ifndef _SCREEN_H
|
|
#define _SCREEN_H 1
|
|
|
|
/*
|
|
screen_display()
|
|
Displays contents on the full screen. Expects a 1024-byte buffer.
|
|
*/
|
|
void screen_display(const void *vram);
|
|
|
|
#endif
|