diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2009-11-07 17:05:21 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2009-11-07 17:05:21 +0000 |
commit | 584dece7b0c982de8731f7400c94b5034aef89e7 (patch) | |
tree | f2d254ac1200e0517fc707d281c48669bec06f59 /core/main.cxx | |
parent | 7d31607442b61b57e9cc794e7f15d6322553e3f0 (diff) |
Moving things around.
Diffstat (limited to 'core/main.cxx')
-rwxr-xr-x | core/main.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/main.cxx b/core/main.cxx new file mode 100755 index 0000000..52351e4 --- /dev/null +++ b/core/main.cxx @@ -0,0 +1,12 @@ +int main(void) +{ + init(); + + setup(); + + for (;;) + loop(); + + return 0; +} + |