mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-29 13:03:36 +01:00
12 lines
213 B
C
12 lines
213 B
C
#ifndef _SCREEN_H
|
|
#define _SCREEN_H 1
|
|
|
|
/*
|
|
screen_display()
|
|
Displays contents on the full screen. Expects a 1024-byte buffer.
|
|
|
|
@arg vram 1024-byte video buffer.
|
|
*/
|
|
void screen_display(const void *vram);
|
|
|
|
#endif
|