mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-06 08:53:36 +01:00
13 lines
271 B
C
13 lines
271 B
C
|
//---
|
||
|
// display:cg - Internal definitions for the display module on fxcg50
|
||
|
//---
|
||
|
|
||
|
#ifndef DISPLAY_CG
|
||
|
#define DISPLAY_CG
|
||
|
|
||
|
/* dvram_switch() - triple buffering switch
|
||
|
Alternates VRAMs after a display update started. */
|
||
|
void dvram_switch(void);
|
||
|
|
||
|
#endif /* DISPLAY_CG */
|