aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/appl/eval-pollin/pollin.asm
blob: de3d0d287a3dbe6a9854c25360db6db6fb8800c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; 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"

.set AMFORTH_RO_SEG = NRWW_START_ADDR+1

; cpu clock in hertz
.equ F_CPU = @F_CPU@
.set BAUD_MAXERROR = 30
.equ TIMER_INT = OVF2addr

.include "drivers/usart@USART@.asm"

; settings for 1wire interface
.equ OW_PORT=PORTB
.EQU OW_BIT=4
.include "drivers/1wire.asm"

.include "amforth.asm"