Gingax x / AD128160
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers s_Lcd.h Source File

s_Lcd.h

00001 #ifndef s_Lcd_H_
00002 #define a_Lcd_H_
00003 
00004 
00005 void bmp(int x0,int y0,int bmp_n);
00006 void newline(void);
00007 void movecorsor(int a);
00008 void drawc(unsigned char c);
00009 void s_Lcdinit();
00010 void color(int rgb);
00011 void pixel(int x0,int y0);
00012 void box(int x0,int y0,int x1,int y1,int paint); 
00013 void line(int x0,int y0,int x1,int y1);
00014 void circle(int x0,int y0,int r,int paint);
00015 void lcdputs(char data[98],int x0,int y0);
00016 void lcdput(unsigned char data,int x0,int y0);
00017 void lcdspeed();
00018 void cls();
00019 
00020 void kanji_init();
00021 void k_puts(int cr);
00022 void kanji_end();
00023 
00024 #endif