add waitvsync() for atari and atari5200

This commit is contained in:
Christian Groessler
2020-10-27 22:25:58 +01:00
committed by Oliver Schmidt
parent 79cf1e13a7
commit 3537210674
6 changed files with 36 additions and 1 deletions

View File

@@ -227,6 +227,7 @@ extern unsigned char __fastcall__ _getcolor (unsigned char color_reg);
/* Other screen functions */
/*****************************************************************************/
extern void waitvsync (void); /* Wait for start of next frame */
extern int __fastcall__ _graphics (unsigned char mode); /* mode value same as in BASIC */
extern void __fastcall__ _scroll (signed char numlines);
/* numlines > 0 scrolls up */

View File

@@ -89,5 +89,8 @@ extern void atr5200std_joy[]; /* referred to by joy_static_stddrv[] */
*/
#define _bordercolor(color) 0
extern void waitvsync (void);
/* Wait for start of next frame */
/* End of atari5200.h */
#endif