mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-01 06:23:35 +01:00
13 lines
213 B
C
13 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
|