1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-12-27 09:31:18 +00:00

Added scroll mode configuration to <conio.h>.

This commit is contained in:
jespergravgaard 2020-05-03 14:01:23 +02:00
parent f7f9ef4a6c
commit b2052e0ab4

View File

@ -70,6 +70,11 @@ unsigned char kbhit (void);
// The function returns the old cursor setting. // The function returns the old cursor setting.
unsigned char cursor(unsigned char onoff); unsigned char cursor(unsigned char onoff);
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
// The function returns the old scroll setting.
unsigned char scroll(unsigned char onoff);
// The horizontal line character // The horizontal line character
const char CH_HLINE = 0x40; const char CH_HLINE = 0x40;
// The vertical line character // The vertical line character