Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / bom.c @ 933

History | View | Annotate | Download (381 Bytes)

1
#include "bom.h"
2

    
3
void bom_init(char type)
4
{
5
        UNIMPLEMENTED
6
}
7

    
8
void bom_refresh(int bitfield)
9
{
10
        UNIMPLEMENTED
11
}
12

    
13
int bom_get(int which)
14
{
15
        UNIMPLEMENTED
16
}
17

    
18
int bom_get_max(void)
19
{
20
        UNIMPLEMENTED
21
}
22

    
23
void bom_leds_on(int bit_field)
24
{
25
        UNIMPLEMENTED
26
}
27

    
28
void bom_leds_off(int bit_field)
29
{
30
        UNIMPLEMENTED
31
}
32

    
33
void bom_on(void)
34
{
35
        UNIMPLEMENTED
36
}
37

    
38
void bom_off(void)
39
{
40
        UNIMPLEMENTED
41
}
42