aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/appl/arduino/uno.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/appl/arduino/uno.asm')
-rw-r--r--amforth-6.5/appl/arduino/uno.asm15
1 files changed, 15 insertions, 0 deletions
diff --git a/amforth-6.5/appl/arduino/uno.asm b/amforth-6.5/appl/arduino/uno.asm
new file mode 100644
index 0000000..74a0d2b
--- /dev/null
+++ b/amforth-6.5/appl/arduino/uno.asm
@@ -0,0 +1,15 @@
+; for a description, what can be done in this
+; file see ../template/template.asm. You may want to
+; copy that file to this one and edit it afterwards.
+
+.include "preamble.inc"
+
+.equ F_CPU = 16000000
+.include "drivers/usart_0.asm"
+
+; settings for 1wire interface, if desired
+.equ OW_PORT=PORTB
+.EQU OW_BIT=4
+.include "drivers/1wire.asm"
+
+.include "amforth.asm"