aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/main.cxx
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2007-10-06 14:47:50 +0000
committerDavid A. Mellis <d.mellis@arduino.cc>2007-10-06 14:47:50 +0000
commit5f3976696ddf5d02ea7e6f805ce655e1f281e6ed (patch)
tree547c97780b4a79c5fac43ebcd017ddfb9b73971c /cores/arduino/main.cxx
parent72e9f39fbde96b484338cbbd785680e5ab4a2e72 (diff)
Moving hardware/targets to hardware/cores.
Diffstat (limited to 'cores/arduino/main.cxx')
-rwxr-xr-xcores/arduino/main.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/cores/arduino/main.cxx b/cores/arduino/main.cxx
new file mode 100755
index 0000000..52351e4
--- /dev/null
+++ b/cores/arduino/main.cxx
@@ -0,0 +1,12 @@
+int main(void)
+{
+ init();
+
+ setup();
+
+ for (;;)
+ loop();
+
+ return 0;
+}
+