c9af2122355d2b3779ef413446b97028a15ecc51
[uccvend-snackrom.git] / ROM2 / display.h
1 #ifndef _DISPLAY_H_
2 #define _DISPLAY_H_
3
4 #include "types.h"
5
6 /* scrolling modes */
7 #define WRAP_SCROLL_L  1  /* scroll to the left     */
8 #define WRAP_SCROLL_R  2  /* scroll to the right    */
9 #define WRAP_ALTERNATE 3  /* alternate between text */
10
11 extern char current_message[256];
12
13 void display_init();
14 void set_msg(char* newmsg);
15 void set_wrap_mode(u8 new_wrap_mode);
16 void display_refresh();
17
18 #endif /* _DISPLAY_H_ */

UCC git Repository :: git.ucc.asn.au