Kazushi Mukaiyama / AD128160_kazushi_branch

Fork of AD128160 by Gingax x

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(int rgb);
00007 void newline(void);
00008 void movecorsor(int a);
00009 void drawc(unsigned char c);
00010 void s_Lcdinit();
00011 void color(int rgb);
00012 void pixel(int x0,int y0);
00013 void box(int x0,int y0,int x1,int y1,int paint); 
00014 void line(int x0,int y0,int x1,int y1);
00015 void circle(int x0,int y0,int r,int paint);
00016 void lcdputs(char data[98],int x0,int y0);
00017 void lcdput(unsigned char data,int x0,int y0);
00018 void lcdspeed();
00019 void cls();
00020 
00021 void kanji_init();
00022 void k_puts(int cr);
00023 void kanji_end();
00024 
00025 #endif