diff options
Diffstat (limited to 'src/main.cxx')
-rw-r--r-- | src/main.cxx | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/main.cxx b/src/main.cxx deleted file mode 100644 index 24b6483..0000000 --- a/src/main.cxx +++ /dev/null @@ -1,28 +0,0 @@ -int main(void)
-{
- init();
- setup();
-
- while (1) {
- loop();
- }
- return 0;
-}
-
-/* Required for C++ hackery */
-/* TODO: This really shouldn't go here... move it later
- * */
-extern "C" void __cxa_pure_virtual(void) {
- while(1)
- ;
-}
-
-/* Implemented:
- * void pinMode(pin, mode)
- * void digitalWrite(pin, value)
- * uint32_t digitalRead(pin)
- * uint32_t analogRead(pin)
- * void randomSeed(seed)
- * long random(max)
- * long random(min, max)
- * */
|