Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / lcd.c @ 906

History | View | Annotate | Download (204 Bytes)

1
#include "lcd.h"
2

    
3
void lcd_init(void)
4
{
5

    
6
}
7

    
8
void lcd_clear_screen( void )
9
{
10

    
11
}
12

    
13
void lcd_putc(char c)
14
{
15

    
16
}
17

    
18
void lcd_puts(char *s)
19
{
20

    
21
}
22

    
23
void lcd_puti(int value)
24
{
25

    
26
}
27

    
28
void lcd_gotoxy(int x, int y)
29
{
30

    
31
}
32