crashtest-r0ket/simulat0r/simcore/simulator.h

21 lines
348 B
C
Raw Normal View History

2011-07-19 08:09:03 +00:00
#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