21 lines
348 B
C
21 lines
348 B
C
|
#ifndef SIMULATOR_H
|
||
|
#define SIMULATOR_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void simlcdPrepareUpdate();
|
||
|
void simlcdWrite(int ignored, int bit);
|
||
|
void simlcdLineFeed();
|
||
|
void simlcdCompleteUpdate();
|
||
|
|
||
|
int simButtonPressed(int button);
|
||
|
|
||
|
int simGetLED(int led);
|
||
|
void simSetLED(int led,uint32_t bitVal);
|
||
|
void simSetLEDHook(int led);
|
||
|
|
||
|
|
||
|
int simulator_main(void);
|
||
|
|
||
|
#endif
|